65 lines
1.5 KiB
HTML
65 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hi bb</title>
|
|
<style>
|
|
/* Modern Reset */
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #edf9ff;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
/* The Centered Box */
|
|
.card {
|
|
background: #fef5ff;
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
min-width: 450px;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* The Centered Button */
|
|
button {
|
|
background-color: #007bff;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="card">
|
|
<h1>Hi bb,</h1>
|
|
<h2>Will you be my valentine?</h2>
|
|
<p>When: Saturday, February 7, 2026 7:00PM
|
|
<p>Where: Steak To One Maginhawa
|
|
<p><button onclick="alert('Yay!')">Yes</button>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |