-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (30 loc) · 1.02 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
<!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>Shooting Game</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="scoreBoard"> Score : 0 </div>
<form action = "" method="get">
<select name="" id = "difficulty">
<option value="Easy">Easy</option>
<option value="Medium">Medium</option>
<option value="Hard">Hard</option>
<option value="Insane">Insane</option>
</select>
<input type = "submit" value = "Play"/>
</form>
<div class = "myGame"> </div>
</body>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.0/gsap.min.js"
integrity="sha512-gWlyRVDsJvp5kesJt4cSdPPLZIBdln/uSwzYgUicQcbTgRNQE4QhP5KUBIYlLYLkiKIQiuD7KUMHzqGNW/D2bQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer">
</script>
<script src = "./app.js"></script>
</html>