-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 883 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="js5.css" />
</head>
<body>
<h1>ROCK PAPER SCISSORS</h1>
<h2>SCOREBOARD</h2>
<div class="scoreboard">
<p class="badge" id="comp"> User </p>
<p class="badge" id="user"> Comp </p>
<div class="vague">
<span class="score" id="compscore">0</span>:<span
class="score"
id="userscore"
>0</span
>
</div>
</div>
<div id="result">
Paper beats rock. You win!
</div>
<div class="choices">
<img src="p2.jpg" class="choice" id="paper" />
<img src="r1.jpg" class="choice" id="rock" />
<img src="s1.jpg" class="choice" id="scissors" />
</div>
<p id="last">ALL THE BEST</p>
<div id="new"><button type="submit" id="button">Reset</button></div>
<script src="text12.js"></script>
</body>
</html>