中秋节祝福代码html
时间: 2024-09-16 18:00:23 浏览: 94
中秋节祝福网页模板
中秋节是一个传统节日,人们通常会通过发送电子贺卡或者制作简单的HTML页面来表达祝福。以下是一个简单的中秋节祝福HTML代码示例:
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>中秋快乐</title>
<style>
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
.container {
width: 600px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
p {
line-height: 1.5;
}
.moon {
display: block;
margin: 0 auto;
width: 200px;
height: 200px;
background-image: url('path/to/moon-icon.png');
background-size: cover;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="container">
<h1 style="font-size: 24px;">中秋佳节快乐!</h1>
<p>在这个月圆人团圆的日子里,愿你的生活就像这明亮的月亮一样,无论身在何处都能感受到家人的温暖。</p>
<img src="path/to/lantern-icon.png" alt="灯笼" class="moon">
</div>
</body>
</html>
```
阅读全文