-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
60 lines (51 loc) · 2.23 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
<!-- <!DOCTYPE html> -->
<html lang="en">
<head>
<title>Zombie Survival</title>
<meta charset="UTF-8">
<script type="text/javascript" src="js/three.js"></script>
<script type="text/javascript" src="js/three.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body repeat="none" vlink="red">
<div id="border_text" align="center">
<br />
<br />
<h1><span style="font-family: Impact; font-size: 5vw; color: #f62217;">ZOMBIE SURVIVAL</span></h1>
<p style="font-family: Impact; font-size: 2.5vw; color: #00FF00; margin-bottom: 2%;">
Year 3019: a group of scientists developed a bacteria able to bring dead people back to life.
<br />
Unluckily things got quickly out of control, and the result was the creation of undead
<br />
creatures called Zombies, that mainly feed on human brains. Their brainless preys once
<br />
infected become zombies as well. Half of the human beings have been turned into zombies.
<br />
The government collapsed and the survivors were left alone. You are one of them.
<br />
Armed with a gun, will you be able to SURVIVE?
<br />
<br style="font-size: 1.5vw"/>
<span style="font-family: Impact; ">Select Level:</span>
</p>
<div>
<button class="fa fa-btnEasy" onclick="window.location.href = 'mainEasy.html';">
<span style="font-family: Impact; font-size: 1.5vw; color: #f62217;">Easy</span>
</button>
<button class="fa fa-btnMedium" onclick="window.location.href = 'mainMedium.html';">
<span style="font-family: Impact; font-size: 1.5vw; color: #f62217;">Medium</span>
</button>
<button class="fa fa-btnHard" onclick="window.location.href = 'mainHard.html';">
<span style="font-family: Impact; font-size: 1.5vw; color: #f62217;">Hard</span>
</button>
<button class="fa fa-btnHard" onclick="window.location.href = 'mainMadness.html';">
<span style="font-family: Impact; font-size: 1.5vw; color: #f62217;">Madness</span>
</button>
<button class="fa fa-btnDark" onclick="window.location.href = 'mainDark.html';">
<span style="font-family: Impact; font-size: 1.5vw; color: #f62217;">Dark</span>
</button>
<p><a href='tutorial.html' class="tutorial" ><b>Tutorial</b></a></p>
</div>
</div>
</body>
</html>