-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.3 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
<!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">
<link href="style.css" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div id="upper">
<h2 id="uppertext"></h2>
<div class="empty"></div>
<div id="para">
<p id="uppertext2"></p>
<p id="uppertext3"></p>
</div>
</div>
<div id ="buttons">
<button class="button" type="button" id="rock">
<img src="rock.png">
<h3>ROCK</h3>
</button>
<button class="button" type="button" id="paper">
<img src="paper.png">
<h3>PAPER</h3>
</button>
<button class="button" type="button" id="scissors">
<img src="scissors.png">
<h3>SCISSORS</h3>
</button>
</div>
<div id="lower">
<p id="lowertext"></p>
<div class="empty"></div>
<div id="result">
<p id="you"></p>
<p id="computer"></p>
<p id="tie"></p>
</div>
</div>
<script src="game.js">
</script>
</body>
</html>