3
respuestas

final hml5 css3

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF8">
        <title>CONTACTO BARBERIA-ALURA </title>
        <link rel="stylesheet" href="reset.css">
        <link rel="stylesheet" href="style.css">
    </head>
    <body>  
        <header>
            <div class="caja">
                <h1><img src="imagenes/logo.png" alt="Logo de la Barberia Alura"></h1>
                <nav> 
                    <ul>
                        <li><a href="index.html">Home</a></li>
                        <li><a href="PRODUCTOS.html">productos</a></li>
                        <li><a href="contacto.html">contacto</a></li>
                    </ul>
                </nav>  
            </div>
        </header>
<main>
    <form>
            <label for="NOMBREAPELLIDO">NOMBRE Y APELLIDO</label>
            <input type="text" id="NOMBREAPELLIDO" class="imput-padron" required>

            <label for="CORREOELECTRONICO">CORREO ELECTRONICO</label>
            <input type="email" id="CORREOELECTRONICO"class="imput-padron" required placeholder="email@dominio.com">


            <label for="TELEFONODECONTACTO">TELEFONO DE CONTACTO</label>
            <input type="tel" id="TELEFONODECONTACTO"class="imput-padron" required placeholder="(XX) XXX  XXXX">

            <label for="MENSAJE">MENSAJE</label>
            <textarea cols="70" rows="10" id="MENSAJE"class="imput-padron" required></textarea>


        <fieldset>
            <legend>¿Por cúal medio desea ser contactado?</legend>
            <label for="radio-email"><input type="radio" name="contacto" value="email" 
            id="radio-email">Email</label>

            <label for="radio-telefono"><input type="radio" name="contacto" value="Telefono"    
            id="radio-telefono">Teléfono</label>

           <label for="radio-whatsapp"><input type="radio" name="contacto" value="whatsapp"     id="radio-whatsapp"checked>WhatsApp</label>
        </fieldset>

        <fieldset>
          <legend>¿Por cúal horario desea ser atendido?</legend>
        <select> 
            <option>MAÑANA</option>
            <option>TARDE</option>
            <option>NOCHE</option>
        </select>
        </fieldset>
        <label class="checkbox"><input type="checkbox"checked> Le gustaria recibir novedades de la Barberia Alura  </label>    
        <input type="submit" value="Enviar Formulario" class="enviar">
    </form>
<table>
    <thead>
        <tr>
            <th>Día</th>
            <th>horario</th>
        </tr>
    </thead>

    <tbody>

        <tr>
        <td>Lunes</td>
        <td>13:00-20:00</td>
        </tr>
        <tr>
        <td>Martes</td>
        <td>8:00-15:00</td>
        </tr>
        <tr>
        <td>Miercoles</td>
        <td>13:00-20:00</td>
        </tr>    
        <tr>
        <td>Jueves</td>
        <td>9:00-21:00</td>
        </tr>
        <tr>
        <td>Viernes</td>
        <td>10:00-19:00</td>
        </tr>
        <tr>
        <td>Sabado</td>
        <td>8:00-21:00</td>
        </tr>
         <tr>
        <td>Domingo</td>
        <td>12:00-18:00</td>
         </tr>
</tbody>
</table>


</main>

        <footer>
        <img src="imagenes/logo-blanco.png"alt="Logo de la Barberia Alura">
        <p class="Copyright">&copy; Copyright BARBERIA-ALURA-2022-MAURICIO ROMERO-</p>
    </footer>
    </html>
3 respuestas
header{
    background-color: rgb(174, 172, 248);
    padding: 20px 0;
}

.caja{
    width: 940px;
    position: relative;
    margin: 0 auto;
}
nav{
    position:absolute;
    top: 110px;
    right: 0px;
}
nav li{
    display: inline;
    margin: 0 10px 0 25px;
}
nav a{
    text-transform: uppercase;
    color:rgb(27, 4, 88);
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
}
nav a:hover{
    color: rgb(235, 112, 11);
    text-decoration: underline;

}   

.productos{
    width: 940px;
    margin: 0 auto;
    padding: 50px;
}
.productos li{
    display: inline-block;
    text-align:center;
    width: 30%;
    vertical-align: top ;
    margin: 0 1.5%;
    padding: 30px 20px;
    box-sizing: border-box;
    border: 5px rgb(80, 21, 107) solid;
    border-radius: 10px;

}   

.productos li:hover{
    border-color: rgb(15, 191, 204);
}
.productos li:active{
    border-color: rgb(6, 110, 14);
}

.productos h2{
    font-size: 30px;
    font-weight: bold;
}

.productos li:hover h2{
    font-size: 33px;
}


.producto-descripcion{
    font-size: 18px;
}

.producto-precio{
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}
footer{
    text-align: center;
    background: url(imagenes/bg.jpg);
    padding: 40px;
}
.Copyright{
    color:#FFFFFF;
    font-size: 10px;
    margin: 20px;
}

main{
    width: 940px;
    margin: 0 auto;
}
form{
    margin: 40px 0;
}

form label, form legend{
    display:block;
    font-size: 20px;
    margin: 0 0 10px;
}
.input-padron{
    display: block;
    margin: 0 0 20px;
    padding:10px 25px;
    width: 50%;

}
.checkbox{
    margin: 20px 0;
}

.enviar{
    width: 40%;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: orange;
    border:none;
    border-radius: 15px;
    transition: 2s background;
    cursor:pointer;
}

.enviar:hover{
   background:rgb(0, 255, 13);
   transform: scale(1.2) rotate(15deg);
}

table{
    margin:40px 40px ;
}

thead{
    background: rgb(223, 104, 223);
    color: rgb(13, 3, 29);
    font-weight: bold;
}
td,th{
    border: 1px solid #4f740b;
    padding: 8px 15px;

    }

Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

Hola José, espero que estés muy bien.

Estamos muy contentos con tu aprendizaje, excelente trabajo!

Sigue adelante con tus estúdios y cualquier duda estaremos aquí para ayudarte.

Si este post te ayudó, por favor, marca como solucionado ✓. Continúa con tus estudios