• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

PHP? Gesior acc BGM?

zerghel

Tsuni
Joined
Jul 1, 2008
Messages
299
Reaction score
9
hello friends
i wanted to embeed a background music to my website using this iframe
Code:
<html>
<head>
<body>
<iframe width="1" height="1" src="http://www.youtube.com/embed/SOMECRAPPYVIDEOWITHGOODMUSIC=0&autoplay=1" frameborder="0" allowtransparency="true"></iframe> 
</body>
</head>
</html>
the problem is that if i click any link on the page the frame reloads again and the BGM starts over and over every time i click on any link of the website
so i want to visit any link of my website and hear the BGM uninterrupted as well
any ideas mates?
 
HTML
Code:
<audio autoplay="true" src="yourmusicurl">

CSS
Code:
audio {
   display:none;
}

Just download the youtube video
 
Back
Top