-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 950 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>Rock Paper Scissors </header>
<div class="body1">
<div class="images">
<div class="img1 img" id="Rock"></div>
<div class="img2 img" id="Paper"></div>
<div class="img3 img" id="Scissors"></div>
</div>
<div class="info">
<div id="n1">
<div class="num1 text" id="youScore">0</div>
<div claas="you text">You</div>
</div>
<div id="n2">
<div class="num2 text" id="compScore">0</div>
<div claas="you text">Computer</div>
</div>
</div>
<div class="result">
<p class="last" id="res">Pick your move</p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>