blob: 3e8049145617c9ae53bbdbf0ac5b3ae8d5f2da8f (
plain)
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
56
57
58
59
60
|
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Rock Paper Scissors</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=devide-width,initial-scale=1">
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/x-icon" href="../images/favicon.ico" sizes="16x16">
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="../index.html">Home</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
<li>
<a href="./recipes/overview.html">Recipes</a>
</li>
<li>
<a href="./rock-paper-scissors.html">Rock Paper Scissors</a>
</li>
</ul>
</nav>
</header>
<div id="headerwrapper">
<h1>Rock Paper Scissors</h1>
<h2>First to five Wins!</h2>
</div>
<main>
<div class="wrapper-centered">
<button class="btn" id="rock">rock</button>
<button class="btn" id="paper">paper</button>
<button class="btn" id="scissors">scissors</button>
</div>
<div class="text-centered">
<p id="player-score">player score:</p>
<p id="comp-score">computer score:</p>
<p id="output">hopefully you're better than a machine ://</p>
</div>
</main>
<footer>
<div class="wrapper-centered">
<p>Bottom Text</p>
</div>
</footer>
</body>
<script src="../scripts/rps.js"></script>
</html>
|