-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstructions.html
96 lines (95 loc) · 4.09 KB
/
instructions.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!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">
<title>Instructions Page</title>
<link rel="stylesheet" href="bootstrap-4.1.3-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="instructions.css">
<link rel="stylesheet" href="css/fixed.css">
</head>
<body data-spy='scroll' data-target='#navbarResponsive'>
<br><br>
<div id="home">
<!-- start navigation -->
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<!-- <a class='navbar-brand' href='#'><img src='#face2.png'></a> -->
<button class="navbar-toggler" type='button' data-toggle='collapse'
data-target="#navbarResponsive">
<span class='navbar-toggler-icon'></span>
</button>
<div class='collapse navbar-collapse' id='navbarResponsive'>
<ul class='navbar-nav ml-auto'>
<li class='nav-item'>
<a class='nav-link' href="index.html">Home</a>
</li>
<li class='nav-item'>
<a class='nav-link' href="instructions.html">Instructions</a>
</li>
<li class='nav-item'>
<a class='nav-link' href="level1.html">Level1</a>
</li>
<li class='nav-item'>
<a class='nav-link' href="level2.html">Level2</a>
</li>
<li class='nav-item'>
<a class='nav-link' href="level3.html">Level3</a>
</li>
<li class='nav-item'>
<a class='nav-link' href="#contacts">Coming Soon</a>
</li>
</ul>
</div>
</nav>
<!-- end nav -->
<!-- Start Landing page section -->
<div class="landing">
<div class="home-wrap">
<div class="home-inner">
</div>
</div>
</div>
<div class='caption text-center'>
<h1>
<ol>
<li>
Go to level 1 in the navigation bar and press "Start".
</li>
<li>
Look at the sequence of lights that illuminate in the squares.
</li>
<li>
Try to follow the pattern.
</li>
<li>
If you need to see the pattern again, click "Start".
</li>
<li>
If you win your "wins" go up, if you loose your "losses" go up.
</li>
<li>
To play again, click on the "Play Again" Button.
</li>
<li>
To reset the game click on "Reset".
</li>
<li>
To go to the "Next Level" click on the "Next Level" Button.
</li>
<li>
To play level 1 right now click on the "Play Now" Button.
</li>
</ol>
</h1>
<h1>Welcome To My Game</h1>
<h3>A Memory Game Called Simon</h3>
<a class='btn btn-outline-light btn-lg' href="level1.html">Play Now</a>
</div>
<!-- End Landing page section -->
</div>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="bootstrap-4.1.3-dist/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.5.0/js/all.js"></script>
</body>
</html>