-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (35 loc) · 1005 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Batu Gunting Kertas</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Kertas Gunting Batu</h1>
</header>
<div class="score-board">
<div id="user_label" class="score-board__badge">User</div>
<div id="comp_label" class="score-board__badge">Comp</div>
<span id="user_score">0</span>:<span id="comp_score">0</span>
</div>
<div id="result">
<p>Tentukan pilihanmu!</p>
</div>
<div class="choices">
<div id="b" class="choices__choice">
<img src="img/1.png" alt="Batu">
</div>
<div id="g" class="choices__choice">
<img src="img/2.png" alt="Gunting">
</div>
<div id="k" class="choices__choice">
<img src="img/3.png" alt="Kertas">
</div>
</div>
<script src="app.js"></script>
</body>
</html>