-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.32 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
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Corona Invader</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class=".background-animation">
<p id="clickMe" class="slide-in-blurred-bottom">Click Anywhere To Play</p>
<h1 class="slide-down" class="hovering" id="upperT">Corona Invader</h1>
<div id="middleT">
<img
id="mouseRightI"
src="img/mouse.png"
class="mouse slide-in-blurred-right"
/>
<p id="mouseRightT" class="mouseT slide-in-blurred-left">
Move Character Right
</p>
<img
id="mouseLeftI"
src="img/mouse.png"
class="mouse slide-in-blurred-right"
/>
<p id="mouseLeftT" class="mouseT slide-in-blurred-left">
Move Character Left
</p>
<img
id="mouseclickI"
src="img/mouseL.png"
class="mouse slide-in-blurred-right"
/>
<p id="mouseclickT" class="mouseT slide-in-blurred-left">
Shoot
</p>
</div>
<p id="bottomT" class="slide-in-blurred-bottom">By Ziad Alshanbari</p>
<script>
window.addEventListener("click", () => {
window.location.href = "/Corona_Invader/game.html";
});
</script>
</body>
</html>