-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 1.28 KB
/
index.html
File metadata and controls
52 lines (45 loc) · 1.28 KB
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
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Eater' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Flavors' rel='stylesheet'>
<title>Sky Shooter</title>
<style>
body{
margin: 0;
overflow: hidden;
color:white;
background-color: black;
}
#title {
font-size: 3em;
font-family: 'Eater';
color: yellow;
width:40%;
Text-align:center;
float:left;
}
#score, #health, #time, #text {
font-size: 2em;
width:10%;
Text-align:center;
float:left;
font-family: 'Flavors';
}
</style>
</head>
<body>
<p>
<div class="title" id="title">Sky Shooter</div>
<div class="text" id="text">Score:</div>
<div id="score" class="score">0</div>
<div class="text" id="text">Health:</div>
<div id="health" class="health">0</div>
<div class="text" id="text">Time:</div>
<div id="time" class="time">100</div>
</p>
<canvas id="myCanvas"></canvas>
<script src="./js/three.js"></script>
<script src="./js/GLTFLoader.js"></script>
<script src="./js/main.js"></script>
</body>
</html>