-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (36 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Rock Paper Scissors Game</h1>
</header>
<div class="score-board">
<div class="score" id="userbadge">user </div>
<div class="score" id="computerbadge">com</div>
<label class="user-score" id = "u1">0</label>:<label class="computer-score" id="u2">0</label>
</div>
<div class="start">
Make Your Move
</div>
<div class="choices">
<div class="choice" id="r">
<img src="rock.png"width="100px" height="100px" alt="rock">
</div>
<div class="choice" id="p">
<img src="paper.png"width="100px" height="100px" alt="paper">
</div>
<div class="choice" id="s">
<img src="sci.png" width="100px" height="100px" alt="scissors">
</div>
</div>
<div class="result" id="r1">
<h2>Let see the result!...</h2>
</div>
<script src="app.js"></script>
</body>
</html>