Skip to content

Instantly share code, notes, and snippets.

@Wangjie515
Created May 10, 2025 05:57
Show Gist options
  • Save Wangjie515/2518e8f0722e66dfa192a3d6fd23b829 to your computer and use it in GitHub Desktop.
Save Wangjie515/2518e8f0722e66dfa192a3d6fd23b829 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>母亲节快乐!</title>
<style>
body {
background: linear-gradient(45deg, #ff9a9e, #fad0c4);
text-align: center;
padding: 50px;
font-family: '微软雅黑', sans-serif;
}
h1 {
color: #ffffff;
font-size: 3em;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.heart {
font-size: 80px;
color: #ff3366;
animation: heartbeat 1.2s infinite;
}
@keyframes heartbeat {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.2); }
}
p {
font-size: 1.5em;
color: #5a5a5a;
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="heart">❤️</div>
<h1>母亲节快乐!</h1>
<p>亲爱的妈妈:<br>
感谢您无私的爱与付出,<br>
愿您永远健康、暴富!<br>
—— 爱您的孩子</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment