利用CSS+HTML制作一个网页版贺卡
时间: 2024-01-23 09:03:40 浏览: 451
以下是一个简单的HTML和CSS代码,用于制作一个网页版贺卡:
HTML代码:
<!DOCTYPE html>
<html>
<head>
<title>网页版贺卡</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="card">
<h1>祝福语</h1>
<p>在这特别的日子里,我想对你说:祝你生日快乐!</p>
<img src="https://via.placeholder.com/200x200" alt="生日蛋糕">
<p>愿你在未来的日子里,健康、快乐、幸福!</p>
<p>谨以此贺卡,献上我最诚挚的祝福!</p>
<p>敬祝:</p>
<p>阖家幸福,万事如意!</p>
</div>
</body>
</html>
CSS代码:
.card {
background-color: #f7f7f7;
padding: 20px;
width: 400px;
margin: 0 auto;
text-align: center;
}
h1 {
font-size: 36px;
color: #ff6600;
margin-bottom: 10px;
}
img {
margin-top: 20px;
margin-bottom: 20px;
}
p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 10px;
}
在这个例子中,我们使用了一个div元素来包含整个贺卡,并设置了背景颜色、内边距、宽度和居中对齐的样式。标题(h1)使用了大号字体、橙色颜色和一些底部边距,以便与正文区分开。在正文区域中,我们添加了一张生日蛋糕的图片,并设置了一些顶部和底部的边距,以使其与其他元素分离。正文段落(p)使用了中号字体和适当的行高,并设置了一些底部边距。最后,我们添加了一些祝福语和签名。
阅读全文