forked from ioniodi/Shooter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 1.03 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
<!DOCTYPE HTML>
<html>
<head>
<title>Shooter</title>
<meta charset = "utf-8">
<meta http-equiv = "content-type" content = "text/html; charset=utf-8">
<style>
body{
background-image: url("./assets/spacBackground.jpg");
background-attachment : fixed;
background-size : cover;
}
</style>
<script src = "//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
</head>
<body>
<a href = "./level1.html">
<img src = "./assets/level1.png" style = "width: 15% ; margin-left: 32%; margin-right: auto; margin-top: 35%;">
</a>
<a href = "./level2.html">
<img src = "./assets/level2.png" style = "width: 15% ; margin-left: 7%; margin-right: auto; margin-top: 35%;">
</a>
</body>
</html>