-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (41 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rock, Paper, Scissors</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>🪨 📰 ✂️</h1>
</header>
<main>
<div id="app-area">
<h2>try your luck in a genteel fisticuffs of rock, paper, scissors with the computer</h2>
<p>select or type your choice and hit the play button to commence</p>
<section class="game-play">
<div id="human-input">
<div class="buttons">
<button id="rock-btn">🪨</button>
<button id="paper-btn">📰</button>
<button id="scissors-btn">✂️</button>
</div>
<div id="text-input">
<input id="human-submission" name="human-submission" type="text"/>
<button id="play-game">Let's play!
</button>
</div>
</div>
</section>
<section class="game-narrative">
<div id="game-status"></div>
</section>
<section class="game-narrative">
<div id="game-outcome"><p>Computer waits patiently</p></div>
</section>
</div>
</main>
<script src="index.js"></script>
</body>