Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
wish13yt authored Oct 20, 2024
1 parent c9d016f commit e27fe53
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ <h2>
</div>
</div>
<a href="https://freakybob.site/activities" id="activities"><button id="activities-button">More activities!</button></a>
<audio id="background-music" loop>
<source src="https://archive.org/download/wiiumusic/03%20-%20System%20Music%20-%20First%20Time%20Setup%20%28TV%29.mp3" type="audio/mp3">
</audio>
<a href="https://github.com/Freakybob-Team/Freakybob.site" id="github-button">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/GitHub_Invertocat_Logo.svg/640px-GitHub_Invertocat_Logo.svg.png" alt="GitHub Logo">
</a>
Expand Down Expand Up @@ -86,6 +83,15 @@ <h2>
<div id="gplLicenseText">
<footer><p id="gpl-3">No Rights Reserved. All pages are licensed under GPL-3.</p>
</div>
<script>
const ks = new Audio('https://archive.org/download/wiiumusic/03%20-%20System%20Music%20-%20First%20Time%20Setup%20%28TV%29.mp3')
let userinteraction = 0
document.addEventListener('click',()=>{
if(userinteraction) return;
userinteraction++;
ks.play()
})
</script>
</body>
</html>
<!--I love boys <3 -->
Expand Down

0 comments on commit e27fe53

Please sign in to comment.