console
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>情人节快乐</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background-color: #fff;
padding: 50px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
color: #e91e63;
font-size: 3em;
}
p {
color: #333;
font-size: 1.5em;
}
</style>
</head>
<body>
<div class="container">
<h1>情人节快乐!</h1>
<p>祝西瓜妹情人节快乐,天天开心!</p>
</div>
</body>
</html>