-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkList.html
22 lines (21 loc) · 1.07 KB
/
linkList.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<audio id="clickSound" src="/Audio/winclick.mp3"></audio>
<script>
function playSound() {
var sound = document.getElementById("clickSound")
sound.play();
}
</script>
<div style="text-align: center; margin: 2.5%;" class="headers">Links to various places</div>
<hr>
<ul>
<li><a href="/" onclick="playSound()">Homepage!</a><img src="/Images/Geocities/home.gif"></li>
<li><a href="/Contact/" onclick="playSound()">Contact me!</a></li>
<li><a href="/About/" onclick="playSound()">About me!</a></li>
<li><a href="/Credits/" onclick="playSound()">Credits</a></li>
<li><a href="/Projects/" onclick="playSound()">My projects!</a></li>
<li><a href="/Aquarium/" onclick="playSound()">My aquarium (turn on audio in settings)</a></li>
<li><a href="/Shrines/" onclick="playSound()">Shrines page</a> <img src="/Images/Geocities/rainbow-new.gif"></li>
<li><a href="/Snake/" onclick="playSound()"> Snake game :3</a></li>
<li><a href="/Web-Playground/" onclick="playSound()">Web Playground</a><img src="/Images/Geocities/rainbow-new.gif">
</li>
</ul>