-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 2.11 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 2.11 KB
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
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<title>Rock Paper Scissors Lizard spock</title>
</head>
<body>
<header class="container-fluid">
<div class="row">
<div id="title" class="col-12">
<h1>Rock Paper Scissors Lizard Spock</h1>
</div>
<div id="col-img" class="col-12">
<img
id="img-rules"
src="https://d3qdvvkm3r2z1i.cloudfront.net/media/catalog/product/cache/1/image/1800x/6b9ffbf72458f4fd2d3cb995d92e8889/r/o/rockpaperscissorslizardspock_newthumb.png"
\
/>
</div>
</div>
</header>
<main class="container-fluid">
<div class="row">
<div id="button-col" class="col-6 offset-3 mt-3">
<h1>These should be buttons</h1>
w
</div>
<div id="computer-choice" class="col-12 mt-3"></div>
<div id="win-loss" class="col-12 mt-3"><p>Wins and Losses Here</p></div>
</div>
</main>
<footer class="container-fluid">
<div class="row">
<div id="rules-text" class="col-12 mt-5">
<p>
rules:<br />scissors cuts paper<br />paper covers rock<br />rock
crushes lizard<br />lizard poisons spock<br />spock smashes
scissors<br />scissors decapitates lizard<br />lizard eats paper<br />paper
disproves spock<br />spock vaporizes rock<br />rock crushes scissors
</p>
</div>
</div>
<div class="row">
<div class="col-12" id="credit-col">
<p>
<a
href="https://www.snorgtees.com/rock-paper-scissors-lizard-spock"
class="credit-text"
>image credit</a
>
</p>
</div>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>