๐Ÿ“ฆ sahkal / Arcade-Game--Enemy-Bugger

๐Ÿ“„ index.html ยท 28 lines
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<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Enemy Bugger!</title>
    <link rel="stylesheet" href="css/style.css">
</head>
<body >
	<h1 style="font-size: 60px;margin:-15px">Enemy Bugger!</h1>
	<div class="game-stats" style="margin-bottom: -20px; margin-top: 20px; margin-left: 125px;">
		<div class="score" style="display: inline;">
			<h2 style="display: inline; color: 	#6495ED">Score:</h2>
			<span  style="display: inline;font-size:30px ;color:#FFFAFA">0</span>
			<h2  style="display: inline; color:#FFFAFA">points</h2>
		</div>
		<div class="lives" style="display: inline; margin: 100px;">
			<h2 style="display: inline; color: 	#6495ED">Lives left:</h2>
			<span style="display: inline;font-size:30px;color:#FFFAFA" >3</span>
		</div>
		<audio src="images/Snowing-holiday.mp3" autoplay>

	</div>
    <script src="js/resources.js"></script>
    <script src="js/app.js"></script>
    <script src="js/engine.js"></script>
</body>
</html>