-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.11 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
<!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">
<title>GAME</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<!--Let's start project-->
<header>
<h1>Rock Paper Scissors</h1>
</header>
<div class="score-bord">
<div class="badge" id="user-label">user</div>
<div class="badge" id="comp-label">Computer</div>
<span id="user-score">0</span>:<span id="user-comp">0</span>
</div>
<div class="result">
<p>Let's Start Game !</p>
</div>
<div class="images">
<div class="choice" id="r">
<img src="./images/stone.png" alt="">
</div>
<div class="choice" id="p">
<img src="./images/paper.png" alt="">
</div>
<div class="choice" id="s">
<img src="./images/scissors.png" alt="">
</div>
</div>
<p id="massage">Make Your Move</p>
<!--Script section-->
<script src="./main.js"></script>
</body>
</html>