Files
ZanePersonal/flights.html
Zane V 62d38f3740 Changed the song cuz I am bored so like, why not?
AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH!!! Oh and btw for future reference I should primarily use Tanger music cuz I am pretty sure they said that they allow their music to be used anywhere, typically yt vids, but how different really is a personal website! I am not serving ads, I am not earning any money, in fact I am losing money, I don't want to be used. Tanger, this is a reminder that if you don't want ur music on my site then tell me via message board.
2026-04-02 16:12:38 +00:00

55 lines
2.8 KiB
HTML

<!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">
</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>
</body>
</html>