es algo básico pero es un inicio para mi en este mundo del css.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tarjeta de Cumpleaños</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
height: 100vh;
background-image: url('fondo.jpg');
background-size: cover;
background-position: center;
}
.card {
width: 400px;
height: 300px;
background: #A4383A;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 10px;
padding: 20px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
img {
width: 100%;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-content {
background: #C0B295;
border-radius: 20px;
padding: 10px;
width: 90%;
text-align: center;
}
.card-content p {
color: #A4383A;
font-weight: 700;
margin: 0;
}
.card-content p.emoji {
font-size: 24px;
}
</style>
</head>
<body>
<section>
<div class="card">
<div class="card-content">
<p>¡Feliz Cumpleaños, [Nombre]!</p>
</div>
<img src="imagen.jpg" alt="Imagen de Cumpleaños">
<div class="card-content">
<p>Espero que tengas un día lleno de alegría y sorpresas.</p>
<p class="emoji">😁🎉</p>
</div>
</div>
</section>
</body>
</html>
Curso de Frontend Developer
0 Comentarios
para escribir tu comentario