Created
May 10, 2025 05:57
-
-
Save Wangjie515/2518e8f0722e66dfa192a3d6fd23b829 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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