-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="js.js" defer></script>
<title>Rock - Paper - Scissors</title>
</audio>
</head>
<body>
<div class="container">
<div class="title-information">
<h1>Rock - Paper - Scissors</h1>
<p>This is the Rock - Paper - Scissors game, is a classic scholar game that now you can play in your favorite browser!.
</p>
<p>You will play vs the computer, who gets <b>more points </b> in <b>five rounds</b> win the game. Just select your card and look if you won the round. <b>Good luck!</b>
</p>
</div>
<div class="score">
<div class="userScore">
<p class="userScore_1">Your Score: </p>
</div>
<div class="roundAndWinner">
<p class="roundAndWinner-p">Round</p>
</div>
<div class="computerScore">
<p class="computerScore_1">Computer Score: </p>
</div>
</div>
<div class="cards">
<div class="rock">
<audio></audio>
<img src="images/gesto-manual-puno-cerrado-levantado-o-puno-ilustracion-vector-boceto_163786-889-removebg-preview(1).png"
alt="rock">
<p>Rock</p>
</div>
<div class="paper">
<audio></audio>
<img src="images/54123281-una-mano-mano-que-muestra-cinco-dedos--removebg-preview.png" alt="hand">
<p>Paper</p>
</div>
<div class="scissors">
<audio></audio>
<img src="images/pngtree-gesture-scissors-hand-cartoon-pose-image_1439363-removebg-preview.png" ;
alt="scissors">
<p>Scissors</p>
</div>
</div>
<div class="informationGame">
<div class="information">
<h1>Information Game!</h1>
<div class="info"></div>
<p class="userLog"></p>
<p class="computerLog"></p>
<p class="roundLog"></p>
</div>
</div>
<div class="footer">
<p>Made by Sanavi!</p>
</div>
</div>
</body>
</html>