淘先锋技术网

首页 1 2 3 4 5 6 7

今天是我好友的生日,我想送他一个特别的生日礼物,所以我决定写一段HTML代码,制作一个生日祝福页面,来表达我对他的祝福和感激之情。

<html>
<head>
<title>生日祝福页面</title>
<style>
body {
background-color: #fff5ee;
font-family: Arial, sans-serif;
color: #8b0000;
}
h1 {
text-align: center;
font-size: 36px;
margin-top: 100px;
}
img {
display: block;
margin: 0 auto;
margin-top: 50px;
width: 200px;
height: 200px;
}
p {
text-align: center;
font-size: 24px;
margin-top: 50px;
}
</style>
</head>
<body>
<h1>生日快乐,<br>亲爱的朋友!</h1>
<img src="birthday-cake.png" alt="生日蛋糕">
<p>愿你的生日充满欢笑和快乐,<br>心想事成,梦想成真!</p>
</body>
</html>

以上是我的HTML代码,我使用了一些基本的标签和样式,如图片标签<img>、标题标签<h1>、段落标签<p>等,通过CSS样式表来控制页面的颜色、字体、布局等。

通过这样一个简单的生日礼物,我想表达我的真诚祝福和感激之情,也让自己更好地掌握了HTML的基础知识和技能。