-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.75 KB
/
Copy pathindex.html
File metadata and controls
39 lines (38 loc) · 1.75 KB
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="style.css">
<title>Final Project — To The Clouds</title>
</head>
<style>
body {
background-image: url('assets/images/CloudScene_1.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="contact.html">Contact Me!</a></li>
<li><a href="controls.html">How To Play / Controls</a></li>
<li><a href="settings.html">Settings / Preferences</a></li>
<li><a href="DT.html">Dev Tools</a></li>
<li><a href="index2.html">Level 2</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/phaser@3.15.1/dist/phaser-arcade-physics.min.js"></script>
<script src="appLvl1.js"></script>
</body>
</html>
<!-- Path: varied -->