-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (114 loc) · 5.03 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!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>A Memory Game Called Simon</title>
<link rel="stylesheet" href="bootstrap-4.1.3-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/fixed.css">
</head>
<body data-spy='scroll' data-target='#navbarResponsive'>
<!-- Sart Home Section -->
<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">nothing yet</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>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><br><br>
</div>
<!-- End Landing page section -->
<!-- </div> -->
<!-- End home section -->
<!-- Start Instrutions section -->
<!-- <div id='course' class='offset'>
<div id='col-12 narrow text-center'>
<h1>Something here to say</h1>
<p>Another thing to say</p>
<a class='btn btn-secondary btn-md' href="#">button</a>
</div>
</div>
<!--<div id='features' class='offset'> -->
<!-- start Jumbotron -->
<!-- <div class='jumbotron'>
<div class="narrow">
<div class="col-12">
<h3 class='heading'>Inside Jumbotron, Narrow class and col-12 classes, inside features ID</h3>
<div class="heading-underline"></div>
</div>
<div class="row text-center">
<div class="col-md-4">
<div class="feature">
<i class="fas fa-play-circle fa-4x" data-fa-transform='shrink-3 up-5'></i>
<h3>Custom Animation</h3>
<p>animat.css and Waypoints.js allow for smooth animations scrolling down the site</p>
</div>
</div>
<div class="col-md-4">
<div class="feature">
<i class="fas fa-sliders-h fa-4x" data-fa-transform='shrink-4.5 up-4.5'></i>
<h3>Content slider</h3>
<p>Owl.Carousel.js makes navigating contents sliders seamless with it's content carosel navigation.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature">
<i class="fab fa-wpforms fa-4x" data-fa-transform='shrink-4 up-5'></i>
<h3>Contact form</h3>
<p>The Bootstrap HTML form will send directly to your email address using PHPMailer.php.</p>
</div>
</div>
</div>
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- start Resources section -->
<!-- <div id="recources" class="offset">
<div class="fixed-background">
</div>
</div> -->
<!-- End Resources section -->
<!-- <br> -->
<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>