-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.html
39 lines (38 loc) · 1.73 KB
/
index3.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="3Style.css">
<title>Final Project — To The Clouds</title>
</head>
<style>
body {
background-image: url('assets/images/CloudScene_4.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
<body>
<img id="loading" height="750" width="1503" src="assets/images/loading.gif">
<h1>Final Project — ☁ To The Clouds ☁</h1>
<p>Made by Isaac Hickman</p>
<ul>
<li><a href="index.html">New Game (Resets Progress / Data)</a></li>
<li><a href="contact3.html">Contact Me!</a></li>
<li><a href="controls3.html">How To Play / Controls</a></li>
<li><a href="settings3.html">Settings / Preferences</a></li>
<li><a href="DT3.html">Dev Tools</a></li>
<li><a href="blank.html">Level 4</a></li>
</ul>
<br>
<label id="nameLabel" for="name">Name: </label>
<input name="name" id="name" type="text">
<button name="btn" id="btn">Submit</button>
<h3>Description</h3>
<p id="description">This game is inspired by the classic 'Space Invaders' where instead of controlling a ship moving through space, you control a character named Codey. As you progress throughout the game to complete three levels, you fly up along a vast landscape of clouds until you reach the sky's limit. The objective of the game, much like its 1978 predecessor, is to destroy all of the enemies. Alternatively, you can also win by surviving long enough. A more detailed description can be found under the Project Overview section in the game's comments.
</p>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/phaser-arcade-physics.min.js"></script>
<script src="appLvl3.js"></script>
</body>
</html>
<!-- Path: varied -->