-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.13 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
<!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 rel="stylesheet" href="style.css">
<title>Rock, Paper, Scissors</title>
</head>
<body>
<div class="container">
<div id="counter">
<div class="box-count" id="me">0</div>
<div class="box-count" id="computer">0</div>
</div>
<div class="info">
<h2>YOU</h2>
<h2 class="comps">COMPUTER</h2>
</div>
<section class="display">
<div class="box" id="left"></div>
<h1>VS</h1>
<div class="box" id="right"></div>
</section>
<section class="options">
<img onclick="rock()" class="btn" id="rock" src="rock.png" alt="rock">
<img onclick="paper()" class="btn" id="paper" src="paper.jpg" alt="paper">
<img onclick="scissors()" class="btn" id="scissors" src="scissors.jpg" alt="scissors">
</section>
<div id="results"><h2>Try Your Luck</h2></div>
</div>
<script src="main.js"></script>
</body>
</html>