-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.56 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
<!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>Document</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="masterdiv">
<div class="topdiv">
<h1 class="title">
Rock Paper Scissors
</h1>
<p class="flavortext">rules: 1st to score 5 points wins.</p>
</div>
<div class="content">
<div class="playerchoice">
<p class="chooseone">
CHOOSE ONE:
</p>
<button class="btn" id="rock"><img src="misc/rock.png" alt="" class="icon"></button>
<button class="btn" id="paper"><img src="misc/paper.png" alt="" class="icon"></button>
<button class="btn" id="scissors"><img src="misc/scissors.png" alt="" class="icon"></button>
</div>
<div class="outcome">
<div class="scoreboard">
<p class="playerscore"></p>
<p> - </p>
<p class="cpuscore"></p>
</div>
<p class="sentence"></p>
</div>
<div class="robotdiv">
<div class="words">
<p class="robotswords"></p>
</div>
<img src="misc/robot.png" alt="" class="robot">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>