-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 886 Bytes
/
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
<html>
<head>
<title>Thom's amazing webserver!</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<script>
window.onload = function () {
alert("WELCOME TO MY WEBSERVER!");
console.log("Hi there...");
}
</script>
</head>
<body>
<h1>Thom's Amazing Webserver!</h1>
<strike>Hello, world!</strike>
<p>Possibly the <strike>worst</strike> best webserver of all time!<br>
Now press some shiny buttons.</p>
<ul>
<li>
<a href="page1.html">Go To Page 1</a>
</li>
<li>
<a href="page2.html">Go To Page 2</a>
</li>
<li>
<a href="page3.html">Go To Page 3</a>
</li>
<li>
<a href="hoi4.html">Super Secret :o</a>
</li>
<li>
<a href="steven.html">Sterno Jones</a>
</li>
</ul>
<img src="gif1.gif">
</img>
If you reached this far, give yourself a pat on the back!
</body>
</html>