-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 899 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
<!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>Rock, Paper, Scissors</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h3 id="title-small">Rock Paper Scissors</h3>
<div class="main-container">
<span class="status-head-wrapper">
<h1 id="status-head"> </h1>
</span>
<div class="move-display">
<h2></h2>
<h2></h2>
</div>
<div class="game-button-wrapper">
<button id="rock-button" type="button"> </button>
<button id="paper-button" type="button"> </button>
<button id="scissors-button" type="button"> </button>
</div>
</div>
</body>
</html>