-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 1.38 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
<!DOCTYPE HTML>
<html>
<head>
<title>Probably K</title>
<style>
body {
margin: 0;
padding: 50px;
background-color: #000000;
color: #f0f0f0;
}
h1 {
font-size: 60px;
}
ul li {
list-style-type: none;
padding: 0 10px;
line-height: 2em;
}
ul a {
color: #f0f0f0;
font-size: 25px;
text-decoration: none;
}
img {
position: absolute;
left: 600px;
top: 60px;
}
</style>
</head>
<body>
<h1>Creating our Game</h1>
<ul>
<li><a href="/00_simplest/">Simplest Game Example</a></li>
<li><a href="/01_lyrics/">Forest Game: Stage 1, painting</a></li>
<li><a href="/02_physics/">Forest Game: Stage 2, creating physic model</a></li>
<li><a href="/03_physics_connected/">Forest Game: Stage 3, connecting them with each other</a></li>
<li><a href="/04_animated/">Forest Game: Stage 4, adding motion to hero</a></li>
<li><a href="/05_camera_moving_left/">Forest Game: Stage 5, adding camera</a></li>
<li><a href="/06_camera_moving_both/">Forest Game: Stage 6, camera moving around</a></li>
<li><a href="/07_floors/">Forest Game: Stage 7, adding floors</a></li>
<li><a href="/08_music/">Forest Game: Stage 8, adding sounds</a></li>
<li><a href="/09_scores/">Forest Game: Stage 9, adding goodies and score</a></li>
<li><a href="/10_final/">Forest Game: Final View</a></li>
</ul>
<img src="/textures/Other/Cat's Eyes.png"/ >
</body>
</html>