viernes, 31 de agosto de 2018

HTML: Práctica 13

 CREAR UNA PÁGINA PARA MÚSICA

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Página de Música</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background: #f0f0f0;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            flex-direction: column;
        }

        .container {
            text-align: center;
            background-color: #2e2e2e;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            color: #fff;
            width: 80%;
            max-width: 400px;
        }

        h1 {
            font-size: 2em;
            margin-bottom: 20px;
        }

        .music-info {
            margin-bottom: 20px;
        }

        audio {
            width: 100%;
            margin-top: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Escucha nuestra Música</h1>
        <div class="music-info">
            <p><strong>Nombre de la Canción:</strong> Rola (Ejemplo)</p>
            <p><strong>Artista:</strong> Artista Ejemplo</p>
            <p>Disfruta de esta increíble canción mientras navegas por la página.</p>
        </div>
        <!-- Reemplaza 'rola.mp3' con tu archivo de audio -->
        <audio controls autoplay loop>
            <source src="rola.mp3" type="audio/mp3">
            Tu navegador no soporta el formato de audio.
        </audio>
    </div>
</body>
</html>

No hay comentarios.:

Publicar un comentario