-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgames.html
110 lines (88 loc) · 3.56 KB
/
games.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
<!DOCTYPE html>
<html>
<head>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
<link rel="stylesheet" href="gameshomecss.css">
<title>Games - 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>Games</h1>
 
<p>Play a range of free games or learn to make your own</p>
</div>
</div>
<div class="learn-more">
<div>
<div>
<div>
<h3>Play free games</h3>
<p>Play a range of free games</p>
<p><a href="games/playgames.html">Play a game</a></p>
<p><a href="games/featuredgames.html">Featured Games</a></p>
</div>
<div>
<h3>How to make a game</h3>
<p>Learn how to make great games</p>
<p><a href="tutorials/scratch/home.html">Start making</a></p>
</div>
<div>
<h3>Game reviews</h3>
<p>Wondering if a game is worth playing? Check out our reviews first.</p>
<p><a href="#">Game Reviews Home</a></p>
</div>
</div>
</div>
</div>
</body>
<footer>
<div class="nav">
<div class="container">
 
<ul>
<a href="home.html"><img src="logo.svg" alt="Logo" style="width:100px;height:100px;"></a>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="games.html">games</a></li>
<li><a href="#">reviews</a></li>
<li><a href="https://scratch.mit.edu/users/TheGamer-/">Scratch</a></li>
<li><a href="sitemap.html">Site Map</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#">Back to top</a></li>
</ul>
 
</div>
</div>
</footer>
</html>