HTML
```<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barberia Aula</title>
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<header>
<div class="logo"></div>
<nav>
<ul>
<li>HOME</li>
<li>PRODUCTOS</li>
<li>CONTACTOS</li>
</ul>
</nav>
</header>
<main>
<div class="card">
<h1>Cabello</h1>
<img src="./imagenes/cabello.jpg" alt="">
<p>Con tijeras o maquina, a gusto de cliente </p>
<span>$10.00</span>
</div>
<div class="card">
<h1>Barba</h1>
<img src="./imagenes/barba.jpg" alt="">
<p>Con tijeras o maquina, a gusto de cliente </p>
<span>$08.00</span>
</div>
<div class="card">
<h1>Cabello + Barba</h1>
<img src="./imagenes/cabello+barba.jpg" alt="">
<p>Con tijeras o maquina, a gusto de cliente </p>
<span>$15.00</span>
</div>
</main>
<footer>
<img src="./imagenes/logo-blanco.png" alt="">
<span>© CopyRight JopeGaro-2023</span>
</footer>
</body>
</html>
CSS
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100%;
height: 100%;
}
header{
width: 100%;
height: 290px;
background-color: rgb(139, 139, 139);
display: flex;
justify-content: space-evenly;
align-items: center;
}
.logo{
width: 20%;
background-image: url("./imagenes/logo.png");
background-position: center;
background-repeat: no-repeat;
height: 85%;
}
nav{
width: 60%;
height: 30%;
}
ul{
width: 100%;
display: flex;
justify-content: space-around;
}
li{
font-size: 25px;
list-style: none;
font-weight: bold;
border-bottom: 1px solid black;
}
li:hover{
color: azure;
cursor: pointer;
border-bottom: 1px white solid;
transform: translateY(-5px);
transition: 0.20s ease-in-out;
font-weight: 300;
}
main{
width: 100%;
height: 700px;
background-color: white;
flex-wrap: wrap;
display: flex;
align-items: center;
justify-content: space-evenly;
}
.card{
align-items: center;
width: 20%;
height: 80%;
display: flex;
flex-direction: column;
justify-content: center;
gap: 5px;
border: solid black 2px;
border-radius: 30px;
}
.card p {
width: 55%;
text-align: center;
}
.card:hover{
border: 1px solid gray;
cursor: pointer;
transform: translateY(-20px);
}
.card:hover span{
color: green;
font-size: 30px;
font-weight: bold;
}
.card:hover h1{
font-size: 40px;
}
footer{
width: 100%;
display: flex;
height: 300px;
justify-content: center;
align-items: center;
flex-direction: column;
background-image: url("./imagenes/bg.jpg");
}
footer span{
color: white;
}
`