-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
27 lines (24 loc) · 751 Bytes
/
blog.html
File metadata and controls
27 lines (24 loc) · 751 Bytes
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
<html>
<head>
<link rel="stylesheet" href="Components/abyss.css">
<audio id="select" src="https://files.catbox.moe/12xpxe.mp3" preload="auto"></audio>
</head>
<body>
<div class="dateselect">
<!--DATE LIST-->
<a onmouseover="playHoverSound()" target="desc" href="/Blog/template.html">00.00.0000</a>
<div class="blogdesc">
<iframe align ="left"name="desc" loading="eager" width="345px" height="470px" style="background-color: black; border:4px solid #ffffff; margin-left: 150px;" >
</iframe>
</div>
<script>
function playHoverSound() {
const sound = document.getElementById("select");
sound.volume = 0.2;
sound.currentTime = 0;
sound.play();
}
</script>
</div>
</body>
</html>