-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.21 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
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GameThingy</title>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<div class = "sky"></div>
<div class = "flexContainer">
<div class = "gameScreen">
<button ><a href = "The-game/index.html"><h1>Play Game</h1></a></button>
<div class = "howTo">
<h2><u>How To Play</u></h2>
<p>To move plane updwar click any where one the screen
Your task is to avoid the missiles
Game will be over if you either hit any missiles or
Try to go out of boundry
</p>
</div>
</div>
<div class = "highScore">
<h1><u>HighScores</u></h1>
<p>This doesn't work i have no clue how to use db and its hard</p>
</div>
</div>
<div id = "music">
<audio controls autoplay>
<source src = "assets/unity.mp3" type = "audio/mpeg">
</audio>
</div>
</body>
<script src = "script.js"></script>
</html>