-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
39 lines (35 loc) · 1.16 KB
/
home.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 lang="en-us" id="mainstyle">
<head>
<meta charset="utf-8">
<title>Rogue Like</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/images/favicon.png">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
</head>
<body>
<h1 id="helloText">Rogue Like</h1>
<div id="clear">
<button id="clickButton" class="buttonStyle">Start Game</button>
<h2>How To Play:</h2>
<p>
You want to kill the boss because he made too many jokes about your mom.<br />
Unfortunately he is surrounded by fish (jesusfish symbol), traps (w - inactive W-will explode),<br />
mines (*), and kobolds (k). However there are weapons and hearts for the brave to enable a "fair"<br>
fight with the boss.<br>
</p>
<h2>Description:</h2>
<p>
This game is inspired by a freecodecamp project called Roguelike.<br />
This game is more puzzle based, so different from the freecodecamp<br />
edition of the game. We hope you enjoy!
</p>
</div>
<div id="game">
</div>
<div id="playerinfo">
</div>
<script src="./script.js"></script>
<i style="font-size: 13px;">Page Developed By Ian Draves & Eliot Glairon</i>
</body>
</html>