-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (74 loc) · 2.92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rock Paper & Scissors</title>
<meta name="description" content="Rock Paper Scissors Game made by jmcamposdev">
<meta property="og:title" content="Rock Paper Scissors Game made by jmcamposdev" />
<meta property="og:url" content="https://jmcamposdev.github.io/TheOdinProject/Foundations/Projects/3-Rock-Paper-Scissors/" />
<meta property="og:description" content="Rock Paper Scissors Game made by jmcamposdev" />
<meta property="og:image" content="img/Scissors.png" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media.css">
<link rel="icon" type="image/x-icon" href="img/Scissors.png">
<meta name="keywords" content="Rock Paper Scissors Game">
<meta name="author" content="José María Campos">
</head>
<body>
<h1 class="neonTitle">Rock Paper Scissors</h1>
<div class="container">
<div class="container-game">
<div class="userPanel">
<hr>
<h2>User</h2>
<div class="userPanelButtons">
<img class="button" src="img/Rock.png" alt="rock">
<img class="button" src="img/Paper.png" alt="paper">
<img class="button" src="img/Scissors.png" alt="scissors">
</div>
</div>
<div class="computerPanel">
<h2>Computer</h2>
<div class="computerPanelChoices">
<img id="computerImg" src="img/Interrogation.png" alt="Interrogation">
</div>
</div>
</div>
</div>
<div class="container-score">
<div class="userScore">
<h3>You</h3>
<div id="userScoreNumber">0</div>
</div>
<div class="container-round">
<h3>Round</h3>
<div id="roundNumber">0</div>
</div>
<div class="computerScore">
<h3>AI</h3>
<div id="computerScoreNumber">0</div>
</div>
</div>
<div class="footer">
<div class="container-result">Let's Start the Game</div>
<div class="author">
<a href="https://jmcampos.dev">JMCAMPOS.DEV</a>
</div>
</div>
<!-- <button id="rock">Rock</button>-->
<!-- <button id="paper">Paper</button>-->
<!-- <button id="scissors">Scissors</button>-->
<!-- <div id="result"></div>-->
<!-- <div id="userScore"></div>-->
<!-- <div id="computerScore"></div>-->
<!-- <div id="round"></div>-->
<!-- <div id="winner"></div>-->
<!-- <img src="img/Rock.png" alt="">-->
<!-- <img src="img/Paper.png" alt="">-->
<!-- <img src="img/Scissors.png" alt="">-->
</body>
<script src="main.js"></script>
</html>