-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkeyword.html
85 lines (84 loc) · 3.88 KB
/
keyword.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Development Dungeon</title>
<link href="css/reset.css" type="text/css" rel="stylesheet" />
<link href="css/style.css" type="text/css" rel="stylesheet" />
<link href="css/keyword.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap" rel="stylesheet">
</head>
<body>
<header>
<section>
<h1>Development Dungeon</h1>
<h2>Keyword Game "pew pew" <img src="https://cdn.pixabay.com/photo/2017/01/31/16/59/bomb-2025548_960_720.png" alt="bomb" title="bomb" width="20px"><img src="https://freesvg.org/img/publicdomainq-computer.png" alt="computer" title="computer" width="20px"><img src="https://cdn.pixabay.com/photo/2017/01/31/16/59/bomb-2025548_960_720.png" alt="bomb" title="bomb" width="20px"></h2>
</section>
<nav>
<ol>
<img src="https://freesvg.org/img/cybergedeon-flame-color.png" alt="flames" title="flames" width="20px">
<li><a id="goto" href="index.html">Home</a></li>
<img src="https://freesvg.org/img/cybergedeon-flame-color.png" alt="flames" title="flames" width="20px">
<li><a href="highscores.html">High Scores</a></li><img src="https://freesvg.org/img/cybergedeon-flame-color.png" alt="flames" title="flames" width="20px">
<li><a href="aboutus.html">About Us</a></li>
<img src="https://freesvg.org/img/cybergedeon-flame-color.png" alt="flames" title="flames" width="20px">
</ol>
</nav>
</header>
<main>
<section>
<div id=middleArea>
<section id="test"></section>
<section>
<section id="viewport"></section>
<section id="animation"></section>
<!-- <section id="score"></section> -->
<form id="start">
<fieldset>
<label>You have finally gotten to the end of the dungeon and you see a poor Mac Classic sitting on the ground. You see bombs with JavaScript keywords hanging above its old yellowing chassis. There is a terminal in front of you with a keyboard. You have determined that if you type the keyword written on the bomb it will disappear. But once you activate the terminal the bombs will start dropping.
<p><input type="submit" name="starts" value=" Activate "></p>
</label>
</fieldset>
</form>
<form id="player">
<fieldset>
<label> Shoot the bomb by typing in the keyword:
<input id="playerIn" type="text" name="playerInput" value="" autocomplete="off" />
</label>
<input type="submit" name="answer" value="Shoot">
</fieldset>
</form>
</section>
</div>
</section>
<div id=button>
<ol>
<li>
<form id="nextpage">
<label>
<input type="submit" name="nextpage" value="High Scores">
</label>
</form>
</li>
</ol>
</div>
</main>
<footer>
<section>
<article>© | <a href="https://github.com/If-Conditionals" target="_blank">GitHub</a></article>
</section>
<section id="score"></section>
<script src="js/playerData.js"></script>
<script src="js/keywordPlayer.js"></script>
<script src="js/keywordGame/p5.min.js"></script>
<script src="js/keywordGame/keywords.js"></script>
<script src="js/keywordGame/keywordGame.js"></script>
<script src="js/keywordGame/bomb.js"></script>
<script src="js/keywordGame/sketch.js"></script>
<script src="js/keywordGame/gameController.js"></script>
<script src="js/app.js"></script>
</footer>
</body>
</html>