-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstructions.html
More file actions
51 lines (48 loc) · 2.13 KB
/
instructions.html
File metadata and controls
51 lines (48 loc) · 2.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rock Paper Scissors Lizard Spock | Instructions</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<div class="row mt-3">
<img class="img-fluid col-3" src="./images/logo.jpg" alt="logo">
<h1 class="col-6 align-self-center">Instructions</h1>
<img class="img-fluid col-3" src="./images/logo.jpg" alt="logo">
</div>
<div class="row mt-5">
<div class="col-lg-6 col-12">
<ul class="text-start">
<li>Rock crushes scissors.</li>
<li>Paper covers rock.</li>
<li>Scissors cut paper.</li>
<li>Lizard poisons Spock.</li>
<li>Spock smashes scissors.</li>
</ul>
</div>
<div class="col-lg-6 col-12">
<ul class="text-end">
<li>Rock crushes lizard.</li>
<li>Paper disproves Spock.</li>
<li>Scissors decapitate lizard.</li>
<li>Lizard eats paper.</li>
<li>Spock vaporizes rock.</li>
</ul>
</div>
</div>
<div class="d-grid gap-2 col-lg-6 mx-auto mt-4">
<button type="button" class="btn btn-primary fs-3 p-lg-0"><a class="link" href="./game.html"><iconify-icon icon="fluent-mdl2:game"
inline={{true}}></iconify-icon> New Game</a></button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script src="./js/index.js"></script>
</body>
</html>