Aquí el ejemplo https://ibb.co/LYvxvxv
Tengo este ejemplo, pero al salir de la pagina se carga nuevamente todo lo que esta en el pie de la pagina y la música se corta.
Código PHP:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}
</style>
</head>
<body>
<h2>Fixed/Sticky Footer Example</h2>
<p>The footer is placed at the bottom of the pagehghghgh
.</p>
<div class="footer">
<p>Hello</p>
</div>
</body>
</html>
No se como poder lograr eso, pensé en un iframe, pero por lo que veo no es así. Alguien que me pueda ayudar plis.
Gracias!!