-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (101 loc) · 2.73 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Links Page</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<style>
html {
color: #fff;
background-color: #000;
}
</style>
<body>
<h2>Click on each link to view the webpage</h2>
<nav>
<ul style="background-color: transparent;">
<li>
<a href="Assisted Suicide WebPage/Assisted Suicide 1.html">
Assisted Suicide
</a>
</li>
<br>
<li>
<a href="Another Game/A Game.html">
Basic Web Game
</a>
</li>
<br>
<li>
<a href="Clock Web App files/Clock Web App.html">
Clock 1
</a>
</li>
<br>
<li>
<a href="ClockProject/sourceIndex.html">
Clock 2
</a>
</li>
<br>
<li>
<a href="Homepage files/Homepage_1/My Homepage.html">
Cosmic Objects
</a>
</li>
<br>
<li>
<a href="Homepage files/Homepage_2/My Homepage 2.html">
Fun stuff
</a>
</li>
<br>
<li>
<a href="NGO/NGO.html">
Sample Page
</a>
</li>
<br>
<li>
<a href="Project_1_Web/Project 1.html">
Project Page
</a>
</li>
<br>
<li>
<a href="Snake Game/sourcecode.html">
Simple Snake Game for Web (only works on PCs for now)<br>
Pause hasn't been implemented for now
</a>
</li>
<br>
<li>
<a href="mygameproject/My New Jumper Game.html">
Not Flappy Bird
</a>
</li>
<br>
<li>
<a href="whateverThisIs/IndexSource.html">
Rotating Cube
</a>
</li>
<br>
<li>
<a href="whateverThisIs/IndexSource2.html">
Bouncing ball on cube
</a>
</li>
<br>
<li>
<a href="My_Memory_Game_files/Memory game.html">
Nice Word Puzzle game
</a>
</li>
</ul>
</nav>
</body>
</html>
</html>