-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.41 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.41 KB
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
<!--i will be putting comments so u understand how this works -ole -->
<html>
<!--Main stuff-->
<head>
<link rel="stylesheet" href="Components/void.css">
<link rel="icon" type="image/x-icon" href="/Components/Images/Padoru.png">
<audio id="select" src="https://files.catbox.moe/12xpxe.mp3" preload="auto"></audio>
<title>ality.zip</title>
<meta content="actu in a .zip" property="og:title"/>
<meta content="Cast your wishes into the abyss." property="og:description"/>
<meta content="#1c193a" data-react-helmet="true" name="theme-color"/>
</head>
<h1>ality.zip</h1>
<a href="home.html" target="filler" onmouseover="playHoverSound()">HOME</a> <a href="blog.html" target="filler" onmouseover="playHoverSound()">BLOG</a> <a href="template.html" target="filler" onmouseover="playHoverSound()">TEMPLATE</a>
<hr align="left">
<!--Frame, that is responsible for having html files inside-->
<iframe name="filler" loading="eager" width="200%" height="35%" style="border:none;" src="home.html">
</iframe>
<!--the silly version thing -->
<div class="sillything">
ality.zip @ v.253
</div>
</div>
<!--script that makes it so when you hover over a link it plays the ut select sound -->
<script>
function playHoverSound() {
const sound = document.getElementById("select");
sound.volume = 0.2;
sound.currentTime = 0;
sound.play();
}
</script>
</html>