-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotfound.html
149 lines (109 loc) · 4.06 KB
/
notfound.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
<link rel="stylesheet" href="/notfoundcss.css">
<!-- <link rel="stylesheet" href="/footercss.css"> -->
<title>404 Page not found - LifesAnIllusion.com</title>
<link rel="icon" href="favicon.ico" />
</head>
<body>
<div class="navbar">
<div class="container">
<div class="menu-wrap">
<nav class="menu">
<ul class="clearfix">
<li><a href="/home.html" style="text-decoration: none">Home</a></li>
<li>
<a href="/games.html" style="text-decoration: none" >Games <span class="arrow">▼</span></a>
<ul class="sub-menu">
<li><a href="/games.html" style="text-decoration: none">Games Home</a></li>
<li><a href="/games/playgames.html" style="text-decoration: none">Play games</a></li>
<li><a href="/tutorials/scratch/home.html" style="text-decoration: none">Game tutorials</a></li>
<li><a href="#" style="text-decoration: none">Game reviews</a></li>
</ul>
</li>
<li>
<a href="/tutorials.html" style="text-decoration: none" >Tutorials <span class="arrow">▼</span></a>
<ul class="sub-menu">
<li><a href="/tutorials.html" style="text-decoration: none">Tutorials Home</a></li>
<li><a href="/tutorials/scratch/home.html" style="text-decoration: none">Game tutorials</a></li>
<li><a href="/tutorials/website/home.html" style="text-decoration: none">Website tutorials</a></li>
</ul>
</li>
<li><a href="#" style="text-decoration: none">Reviews</a></li>
</ul>
</nav>
</div>
<p> </p>
</div>
</div>
<div class="jumbotron">
<div class="container">
<h1>Page not found</h1>
</div>
</div>
<div class="image">
<div align="center">
<!--<IMG SRC="/404.svg" ALT="image">-->
</div>
</div>
<div class="searchtext">
<h2>Try a search instead?</h2>
<div class="searchbarnotfound">
<form method="get" action="#">
<input placeholder="Search" name="search" />
<i class="fa fa-search"></i>
</form>
</div>
<p> PS : You're next</p>
</div>
<!-- <div class="learn-more">
<div>
<div>
<div>
<h3>Games</h3>
<p>Play a range of free games</p>
<p><a href="/games.html">Games home</a></p>
</div>
<div>
<h3>Tutorials</h3>
<p>Read tutorials on everything from creating games using Scratch to creating a webiste.</p>
<p><a href="/tutorials.html">Tutorials Home</a></p>
<p><a href="/tutorials/scratch/home.html">Scratch</a></p>
<p><a href="/tutorials/websites/home.html">Websites</a></p>
</div>
<div>
<h3>Reviews</h3>
<p>Wondering if a game is worth playing? Check out our reviews first.</p>
<p><a href="#">Reviews Home</a></p>
</div>
</div>
</div>
</div> -->
<footer class="footer-distributed">
<div class="footer-left">
<p class="footer-links">
<a href="/home.html">Home</a>
·
<a href="/games.html">Games</a>
·
<a href="/tutorials.html">Tutorials</a>
·
<a href="/reviews.html">Reviews</a>
·
<a href="/contact.html">Contact</a>
·
<a href="/sitemap.html">Sitemap</a>
</p>
<p class="footer-company-name">LifesAnIllusion.com © 2015</p>
</div>
<div class="footer-right">
<form method="get" action="#">
<input placeholder="Search" name="search" />
<i class="fa fa-search"></i>
</form>
</div>
</footer>
</body>
</html>