-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (65 loc) · 2.27 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Retro Sound Board</title>
<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=Cutive&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h1>Retro Sound Board</h1>
<div class="gameBtn">
<a href="./Game/game.html">think you can place the sounds? Play the game first!</a>
</div>
<div class="container" id="soundBoard">
<div class="btn" id="dialup">
<img src="./source/photos/dialup.jpeg">
<p>Dialup modem</p>
</div>
<div class="btn" id="vcr">
<img src="./source/photos/vcr.jpeg"/>
<p>VCR</p>
</div>
<div class="btn" id="camera">
<img src="./source/photos/camera.jpeg"/>
<p>Film SLR</p>
</div>
<div class="btn" id="rotary">
<img src="./source/photos/rotary.jpeg"/>
<p>Rotary Phone</p>
</div>
<div class="btn" id="typewriter">
<img src="./source/photos/typewriter.jpeg"/>
<p>Typewriter</p>
</div><div class="btn" id="polaroid">
<img src="./source/photos/polaroid.webp"/>
<p>polaroid</p>
</div>
</div>
<div class="footer">
<p>Made for fun by CreatorTray</p>
</div>
<audio id="dialUpSound">
<source src="./source/sounds/dialup.flac" type="audio/aac">
</audio>
<audio id="vcrSound">
<source src="./source/sounds/vcr.wav" type="audio/wav">
</audio>
<audio id="cameraSound">
<source src="./source/sounds/camera.wav" type="audio/wav">
</audio>
<audio id="rotarySound">
<source src="./source/sounds/rotary.mp3" type="audio/mpeg">
</audio>
<audio id="typewriterSound">
<source src="./source/sounds/typewriter.mp3" type="audio/mpeg">
</audio>
<audio id="polaroidSound">
<source src="./source/sounds/polaroid.wav" type="audio/wav">
</audio>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="./index.js"></script>
</body>
</html>