-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div class="container">
<header>
<p>Rock Paper Scissors</p>
</header>
<p class="js-result">Let Play !!</p>
<p class="js-move"></p>
<p class="js-score"></p>
<!-- option-images -->
<div class="option-images">
<!-- Rock Btn Move -->
<button class="option-btn js-rock-btn">
<img class="move-emoji" src="images/rock-emoji.png" alt="Rock Emoji">
<p>Rock</p>
</button>
<!-- Paper Btn Move -->
<button class="option-btn js-paper-btn">
<img class="move-emoji" src="images/paper-emoji.png" alt="Paper Emoji">
<p>Paper</p>
</button>
<!-- Scissors Btn Move -->
<button class="option-btn js-scissors-btn">
<img class="move-emoji" src="images/scissors-emoji.png" alt="Scissors Emoji">
<p>Scissors</p>
</button>
</div>
<div>
<!-- Reset Btn -->
<button class="reset-score js-reset-score">Reset Score</button>
<!-- Auto Play Btn -->
<button class="auto-play js-auto-play">Auto Play</button>
</div>
<!-- Reset Confirmation -->
<div class="reset-confirmation js-reset-confirmation">
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>