34 lines
1.5 KiB
HTML
34 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Para Javi</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: Segoe UI, Arial, sans-serif;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
}
|
|
.container { text-align: center; padding: 2rem; }
|
|
.heart { font-size: 4rem; animation: pulse 1.5s ease infinite; margin-bottom: 1rem; }
|
|
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
|
|
h1 { font-size: 3.5rem; font-weight: 700; background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ffb3b3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
|
|
p { font-size: 1.5rem; color: #a0aec0; margin-bottom: 2rem; }
|
|
.badge { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 0.5rem 1.5rem; font-size: 0.9rem; color: #ff6b6b; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="heart">❤</div>
|
|
<h1>Te amo Javi</h1>
|
|
<p>Mi esposa</p>
|
|
<span class="badge">vitalvitamina.cl</span>
|
|
</div>
|
|
</body>
|
|
</html> |