-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
75 lines (75 loc) · 4.78 KB
/
info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="Author" content="Ethan Hair">
<title>Mole Patrol More Info</title>
<link href="styling/site.css" rel="stylesheet" />
<link href="styling/info.css" rel="stylesheet" />
<link rel="icon" href="images/mole-32.png" sizes="32x32" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/fa2ab9e600.js" crossorigin="anonymous"></script>
</head>
<body class="center row">
<a class="home-link pixel-words clickable" href="index.html">Home</a>
<div id="volume-control" class="pos-abs right-corner vol-btns">
<i id="sound-effects" class="fa-solid fa-volume clickable" onclick="ToggleSE()"></i>
<i id="music" class="fa-solid fa-music-slash clickable" onclick="ToggleMusic()"></i>
</div>
<div id="background" class="background center justify-start column">
<div class="title pixel-words">More Info</div>
<div class="row space-evenly pixel-words">
<div class="section column justify-start">
<div class="section-header">Credits</div>
<ul class="scrollable">
<li class="section-item">
All pixel art is original content created with Piskel
</li>
<li class="section-item">
The pixel font is <a class="clickable link" href="https://fonts.google.com/specimen/Press+Start+2P?query=press+start">Press Start 2P from Google Fonts</a>
</li>
<li class="section-item">
The background music is <a class="clickable link" href="https://opengameart.org/content/puppy-playing-in-the-garden">"Puppy Playing in The Garden" by Spring</a>
</li>
<li class="section-item">
The menu sound effect is <a class="clickable link" href="https://opengameart.org/content/8bit-menu-highlight">"8bit Menu Highlight" by Fupi</a>
</li>
<li class="section-item">
The miss sound effect is <a class="clickable link" href="https://opengameart.org/content/swish-bamboo-stick-weapon-swhoshes">"Swish - bamboo stick weapon swhoshes" by qubodup/Iwan Gabovitch</a>
</li>
<li class="section-item">
The explosion sound effect is <a class="clickable link" href="https://opengameart.org/content/bombexplosion8bit">"bomb_explosion_8bit" by Luke.RUSTLTD</a>
</li>
<li class="section-item">
The game over sound is <a class="clickable link" href="https://opengameart.org/content/game-over-soundold-school">"Game Over Sound(Old School)" by den_yes</a>
</li>
<li class="section-item">
The powerup and powerdown sounds are by Cleyton Kauffman - <a class="clickable link" href="https://soundcloud.com/cleytonkauffman">https://soundcloud.com/cleytonkauffman</a>
</li>
<li class="section-item">
The whack sound effect comes from <a class="clickable link" href="https://opengameart.org/content/37-hitspunches">here</a>
</li>
<li class="section-item">
The mole sound effect was made using <a class="clickable link" href="https://sfxr.me/">jsfxr</a>
</li>
<li class="section-item">
The volume and music icons come from <a class="clickable link" href="https://fontawesome.com/">FontAwesome</a>
</li>
</ul>
</div>
<div class="section column justify-start">
<div class="section-header">Links</div>
<ul>
<li class="section-item">
<a class="clickable link" href="https://github.com/EthanHair/mole-patrol">This is the link to the GitHub for this game</a>.
Please feel free to add feature requests or bugs that you've encountered as an issue on there
</li>
</ul>
</div>
</div>
</div>
</body>
<script src="scripts/site.js"></script>
<script src="scripts/info.js"></script>
</html>