-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 957 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissor</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Rock Paper Scissor</h1>
</header>
<div class="scoreBoard">
<div class="label" id='user-label'>user</div>
<div class='label' id='comp-label'>comp</div>
<span id='user-score'>0</span>:<span id='comp-score'>0</span>
</div>
<div class='result' id='result'>Start the game!</div>
<div class="options">
<div class="choice" id='r'><img src="images/rock.png" alt="Rock image"></div>
<div class="choice" id='p'><img src="images/paper.png" alt="Paper image"></div>
<div class="choice" id='s'><img src="images/scissor.png" alt="Scissor image"></div>
</div>
<div class="tag">Make a move.</div>
<script src="app.js"></script>
</body>
</html>