Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<!

DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ángela Monte de Oscar</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #ffffff;
border-radius: 10px;
padding: 50px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
text-align: center;
position: relative;
}
h1 {
color: #ff69b4;
font-size: 36px;
margin: 0;
}
.heart {
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
font-size: 60px;
color: #ff69b4;
}
.stars {
position: absolute;
top: -10px;
right: -10px;
font-size: 24px;
color: #ffd700;
}
.angels {
position: absolute;
bottom: -10px;
left: -10px;
font-size: 24px;
color: #87cefa;
}
</style>
</head>
<body>
<div class="container">
<div class="heart"></div>
<div class="stars"></div>
<div class="angels">👼👼👼👼👼</div>
<h1>Ángela </h1>
</div>
</body>
</html>

You might also like