!Doctype HTML
!Doctype HTML
DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>San Valentín</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #ffccd5;
margin: 0;
padding: 50px;
}
.container {
background: white;
padding: 20px;
border-radius: 10px;
display: inline-block;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.buttons {
margin-top: 20px;
}
.button {
background-color: #ff4d6d;
color: white;
border: none;
padding: 10px 20px;
margin: 10px;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
.button:hover {
background-color: #c9184a;
}
</style>
</head>
<body>
<div class="container">
<h1>¿Quieres ser mi San Valentín?</h1>
<div class="buttons">
<a href="si.html" class="button">Sí</a>
<a href="no.html" class="button">No</a>
</div>
</div>
</body>
</html>