-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.33 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
39
40
<!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" />
<link rel="icon" type="image/x-icon" href="/favicon.png" />
<title>E Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="scoreBoard">Score : 0</div>
<form action="" method="get">
<div class="name">
<a href="http://yugeshanand.herokuapp.com" target="_blank">
<img src="/favicon.png" width="50px" alt=""
/></a>
<label> Bubble Shooter</label>
</div>
<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" />
<label class="credit">@created By Yugesh Anand</label>
</form>
<div class="myGame"></div>
</body>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"
integrity="sha512-VEBjfxWUOyzl0bAwh4gdLEaQyDYPvLrZql3pw1ifgb6fhEvZl9iDDehwHZ+dsMzA0Jfww8Xt7COSZuJ/slxc4Q=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="./index.js"></script>
</html>