-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<style type = "text/css">
body{
background-image:url("blood.jpg");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding: 0px;
margin: 0px;
}
</style>
</head>
<body>
<div id = "thegame">
<button onclick="window.location.href='./consent_form.html';">Consent Form</button>
<button onclick="window.location.href='./instructions.html';">Instructions</button>
<button onclick="window.location.href='./level1.html';">Level 1</button>
<button onclick="window.location.href='./level2.html';">Level 2</button>
<button onclick="window.location.href='./level4.html';">Level 3</button>
<button onclick="window.location.href='./level5.html';">Level 4</button>
<button onclick="window.location.href='./level6.html';">Level 5</button>
<button onclick="window.location.href='./level7.html';">Level 6</button>
<button onclick="window.location.href='./level8.html';">Level 7</button>
</div>
</body>
</html>