Skip to content

Commit d6a105e

Browse files
committed
berb button
1 parent a398b0b commit d6a105e

4 files changed

Lines changed: 103 additions & 0 deletions

File tree

flights.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Zane :P</title>
7+
<link rel="stylesheet" href="style.css">
8+
<link rel="icon" href="favicon.png">
9+
</head>
10+
<body>
11+
<header>
12+
<a href="index.html"><img class="logo" src="logo.gif" alt="logo"></a>
13+
<br>
14+
<br>
15+
<img class="eeto" src="https://anlucas.neocities.org/under-con.gif" alt="Under Construction">
16+
<a href="https://zaney.atabook.org/"><img class="eeto" src="https://zane.org/buttons/guestbook.gif"></a>
17+
<div class="nav-container">
18+
<a href="https://zane.org"><img class="nav-item" src="https://zane.org/buttons/cd.gif"><br>Home</a>
19+
<br><br>
20+
<a href="https://zane.org/links.html"><img class="nav-item" src="https://zane.org/buttons/globe05.gif"><br>Links</a>
21+
<br><br>
22+
<a href="https://zaney.atabook.org/"><img class="nav-item" src="https://zane.org/buttons/gb.gif"><br>Guestbook</a>
23+
<br><br>
24+
<a href="https://zane.org/info.html"><img class="nav-item" src="https://zane.org/buttons/info.gif"><br>Information</a>
25+
<br><br>
26+
<a href="https://zane.org/flights.html"><img class="nav-item" src="https://zane.org/buttons/berb.gif"><br>Flightlogs</a>
27+
</div>
28+
</header>
29+
<div class="content">
30+
<h1 class="content">February Fun Trip</h1>
31+
<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>
32+
</div>
33+
<div class="music">
34+
<h1>Background Music</h1>
35+
<img class="song-cover" src="swsd-logo.jpg" alt="song cover">
36+
<p><a href="https://tangermusic.bandcamp.com/track/somewhere-someday">somewhere, someday</a> - <a href="https://tangermusic.bandcamp.com">Tanger</a></p>
37+
<audio id="bg-music" controls autoplay loop>
38+
<source src="music.mp3" type="audio/mpeg">
39+
Your browser does not support the audio element.
40+
</audio>
41+
<p class="mini-text"><i>Please enable autoplay for the best experience</i></p>
42+
</div>
43+
<script>
44+
const music = document.getElementById("bg-music");
45+
46+
function tryPlayMusic() {
47+
if (music && music.paused) {
48+
music.play().catch(() => {});
49+
}
50+
}
51+
52+
window.addEventListener("click", tryPlayMusic, { once: true });
53+
</script>
54+
</body>
55+
</html>

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
<a href="https://zaney.atabook.org/"><img class="nav-item" src="https://zane.org/buttons/gb.gif"><br>Guestbook</a>
2323
<br><br>
2424
<a href="https://zane.org/info.html"><img class="nav-item" src="https://zane.org/buttons/info.gif"><br>Information</a>
25+
<br><br>
26+
<a href="https://zane.org/flights.html"><img class="nav-item" src="https://zane.org/buttons/berb.gif"><br>Flightlogs</a>
2527
</div>
2628
</header>
2729
<div class="content">

info.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,32 @@
2121
<a href="https://zaney.atabook.org/"><img class="nav-item" src="https://zane.org/buttons/gb.gif"><br>Guestbook</a>
2222
<br><br>
2323
<a href="https://zane.org/info.html"><img class="nav-item" src="https://zane.org/buttons/info.gif"><br>Information</a>
24+
<br><br>
25+
<a href="https://zane.org/flights.html"><img class="nav-item" src="https://zane.org/buttons/berb.gif"><br>Flightlogs</a>
2426
</div>
2527
</header>
2628
<h1 class="content">What elements are AI?</h1>
2729
<p class="content">The only AI written code as of Feb 20th 2026 on this site 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.</p>
30+
<div class="music">
31+
<h1>Background Music</h1>
32+
<img class="song-cover" src="swsd-logo.jpg" alt="song cover">
33+
<p><a href="https://tangermusic.bandcamp.com/track/somewhere-someday">somewhere, someday</a> - <a href="https://tangermusic.bandcamp.com">Tanger</a></p>
34+
<audio id="bg-music" controls autoplay loop>
35+
<source src="music.mp3" type="audio/mpeg">
36+
Your browser does not support the audio element.
37+
</audio>
38+
<p class="mini-text"><i>Please enable autoplay for the best experience</i></p>
39+
</div>
40+
<script>
41+
const music = document.getElementById("bg-music");
42+
43+
function tryPlayMusic() {
44+
if (music && music.paused) {
45+
music.play().catch(() => {});
46+
}
47+
}
48+
49+
window.addEventListener("click", tryPlayMusic, { once: true });
50+
</script>
2851
</body >
2952
</html>

links.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
<a href="https://zaney.atabook.org/"><img class="nav-item" src="https://zane.org/buttons/gb.gif"><br>Guestbook</a>
2222
<br><br>
2323
<a href="https://zane.org/info.html"><img class="nav-item" src="https://zane.org/buttons/info.gif"><br>Information</a>
24+
<br><br>
25+
<a href="https://zane.org/flights.html"><img class="nav-item" src="https://zane.org/buttons/berb.gif"><br>Flightlogs</a>
2426
</div>
2527
</header>
2628
<h1>Cool Links</h1>
@@ -61,5 +63,26 @@ <h2>Link Me!</h2>
6163
<p class="mini-text"><i>If you link me and let me know (via guestbook) then I will link you back!</i></p>
6264
<p>&lt;a href="https://zane.org"&gt;&lt;img src="https://zane.org/logo.gif"&gt;&lt;/a&gt;</p>
6365
<a class="why-are-you-looking-at-my-code" href="https://zane.org"><img class="why-are-you-looking-at-my-code" src="https://zane.org/logo.gif"></a>
66+
<div class="music">
67+
<h1>Background Music</h1>
68+
<img class="song-cover" src="swsd-logo.jpg" alt="song cover">
69+
<p><a href="https://tangermusic.bandcamp.com/track/somewhere-someday">somewhere, someday</a> - <a href="https://tangermusic.bandcamp.com">Tanger</a></p>
70+
<audio id="bg-music" controls autoplay loop>
71+
<source src="music.mp3" type="audio/mpeg">
72+
Your browser does not support the audio element.
73+
</audio>
74+
<p class="mini-text"><i>Please enable autoplay for the best experience</i></p>
75+
</div>
76+
<script>
77+
const music = document.getElementById("bg-music");
78+
79+
function tryPlayMusic() {
80+
if (music && music.paused) {
81+
music.play().catch(() => {});
82+
}
83+
}
84+
85+
window.addEventListener("click", tryPlayMusic, { once: true });
86+
</script>
6487
</body >
6588
</html>

0 commit comments

Comments
 (0)