Files
ZanePersonal/info.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

52 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>Information | 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>
<h1 class="content">What elements are AI?</h1>
<p class="content">The AI written code on this website as of Feb 22nd 2026 is the code for music playback on the homepage. It uses javascript to play the music when you click anywhere (if the music isn't already playing). AI has also assisted me in how to set the background to the checkerboard pattern, but didn't directly code it. The git messages are written by AI, so I don't need to keep track of my changes before the push. Another AI tool I use is the AI assisted auto-complete.</p>
<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>