写一个祝你生日快乐的页面
时间: 2023-10-27 16:07:36 浏览: 88
非常感谢您的祝福和关注!以下是一个简单的祝福页面示例,希望您喜欢。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>祝你生日快乐!</title>
<style>
body {
background-color: #f9e1e1;
text-align: center;
font-family: Arial, sans-serif;
}
h1 {
color: #9c1b1b;
margin-top: 50px;
}
p {
font-size: 24px;
line-height: 1.5;
color: #6a6a6a;
margin-top: 30px;
}
img {
margin-top: 50px;
}
</style>
</head>
<body>
<h1>Happy Birthday!</h1>
<p>祝我的朋友在这个特别的日子里,一切都能够美好开启,无论是欢笑或是泪水,它们都能让你收获更多的经验和获得更多的成长。生日快乐!</p>
<img src="https://i.imgur.com/8eINH.gif" alt="生日蛋糕" width="400">
</body>
</html>
阅读全文