viernes, 31 de agosto de 2018

HTML: Práctica 18

 CÓDIGO PARA CREAR UN VIDEO


<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Reproductor de Video</title>
    <!-- Estilo básico con fuentes y colores atractivos -->
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
    <style>
        /* Reset de márgenes y paddings */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f4f7fc;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #333;
        }

        .container {
            text-align: center;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 90%;
            width: 650px;
        }

        h1 {
            color: #4CAF50;
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        video {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* Aspect ratio 16:9 */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: #000;
            border-radius: 8px;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Texto alternativo si el video no carga */
        .no-video-support {
            font-size: 1.1em;
            color: #888;
        }

        @media (max-width: 768px) {
            .container {
                width: 100%;
                padding: 15px;
            }

            h1 {
                font-size: 2em;
            }
        }
    </style>
</head>
<body>

<div class="container">
    <h1>Mi Reproductor de Videos</h1>

    <!-- Contenedor para el video con estilo de relación de aspecto 16:9 -->
    <div class="video-container">
        <video autoplay controls>
            <source src="Together Forever.mp4" type="video/mp4">
            <source src="Together Forever.webm" type="video/webm">
            <p class="no-video-support">Tu navegador no soporta la etiqueta de video. Actualiza tu navegador o utiliza uno compatible.</p>
        </video>
    </div>
</div>

</body>
</html>

No hay comentarios.:

Publicar un comentario