-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflights.html
More file actions
63 lines (61 loc) · 3.1 KB
/
flights.html
File metadata and controls
63 lines (61 loc) · 3.1 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flightlogs | Zane :P</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.png">
<script src="https://melonking.net/scripts/site-closer.js"></script>
<script>
sc.closedPage = "closed.html";
sc.closedDays = ["Sunday"];
shutItDown();
</script>
</head>
<body>
<header>
<a href="index.html"><img class="logo" src="logo.gif" alt="logo"></a>
<br>
<br>
<a href="https://code.zane.org/ZaneDev/ZanePersonal"><img class="eeto" src="https://zane.org/buttons/code-here.png" alt="Code base link!!! WOAHHHHHHHHHH CODE?!! THAT'S SOOOO CRAZY WOAHHHHH IT'S AN OPEN SOURCED WEBSITE"></a>
<a href="https://zaney.atabook.org/"><img class="eeto" src="https://zane.org/buttons/guestbook.gif"></a>
<div class="nav-container">
<a href="index.html"><img class="nav-item" src="https://zane.org/buttons/cd.gif"><br>Home</a>
<br><br>
<a href="links.html"><img class="nav-item" src="https://zane.org/buttons/globe05.gif"><br>Links</a>
<br><br>
<a href="https://zaney.atabook.org/"><img class="nav-item" src="https://zane.org/buttons/gb.gif"><br>Guestbook</a>
<br><br>
<a href="info.html"><img class="nav-item" src="https://zane.org/buttons/info.gif"><br>Information</a>
<br><br>
<a href="flights.html"><img class="nav-item" src="https://zane.org/buttons/berb.gif"><br>Flightlogs</a>
</div>
</header>
<div class="content">
<h1 class="content">February Fun Trip</h1>
<p>During this February I went to Honolulu Hawaii! Me and my family would walk around the city and enjoy the weather, won't give too many details to avoid getting doxxed (and cuz my memory is worst than a goldfish) but I will say that I had a great time. Good weather all around until the last day. On the last day there was a bunch of rain.</p>
</div>
<div class="music">
<h1>Background Music</h1>
<img class="song-cover" src="swsd-logo.jpg" alt="song cover">
<p><a href="https://tangermusic.bandcamp.com/track/i-like-loud-things">I LIKE LOUD THINGS</a> - <a href="https://tangermusic.bandcamp.com">Tanger</a></p>
<audio id="bg-music" controls autoplay loop>
<source src="music.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<p class="mini-text"><i>Please enable autoplay for the best experience</i></p>
</div>
<script>
const music = document.getElementById("bg-music");
function tryPlayMusic() {
if (music && music.paused) {
music.play().catch(() => {});
}
}
window.addEventListener("click", tryPlayMusic, { once: true });
</script>
<link href="https://melonking.net/styles/flood.css" rel="stylesheet" type="text/css" media="all" />
<script src="https://melonking.net/scripts/flood.js"></script>
</body>
</html>