-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 916 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./style.css">
<title>Three.js project</title>
</head>
<body>
<div id="app"></div>
<div class="info-box" id="hidden-info-box">
<h1 id="hidden-info-text">WELCOME TO SPACE ATTACK</h1>
<br>
<button id="hidden-info-btn" class="btn">START</button>
</div>
<div class="score">
<div class="score__label">SCORE: <span id=score>0</span></div>
<br>
<div class="score__label">SHIP: <span id=ship-health>100</span></div>
<br>
<div class="score__label">PLANET: <span id=planet-health>100</span></div>
</div>
<div id="boss-wrapper" class="boss_hp hidden"><div id="boss-hp" class="boss_hp--gone"></div></div>
<script src="./index.js"></script>
</body>
</html>