html5网页设计作业
时间: 2023-12-20 17:05:05 浏览: 30
很高兴能帮到你!以下是一个简单的HTML5网页设计作业,供你参考:
<!DOCTYPE html>
<html>
<head>
<title>网页设计作业</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>网页设计作业</h1>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">关于</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>欢迎来到我们的网站!</h2>
<p>这是一个HTML5网页设计作业的示例页面。</p>
<p>在这个页面中,我们将通过HTML5和CSS3技术来实现网页设计。</p>
</section>
<section>
<h2>最新消息</h2>
<ul>
<li>我们的网站将于下周正式上线。</li>
<li>我们正在开发更多的功能,敬请期待。</li>
</ul>
</section>
<section>
<h2>联系我们</h2>
<p>如果您有任何问题或建议,请通过以下方式联系我们:</p>
<ul>
<li>电话:1234567890</li>
<li>邮箱:example@example.com</li>
<li>地址:XX省XX市XX区XX街道XX号</li>
</ul>
</section>
</main>
<footer>
<p>版权所有 © 2021 网页设计作业</p>
</footer>
</body>
</html>
你可以通过在style.css文件中添加样式来美化页面,例如:
header {
background-color: #333;
color: #fff;
padding: 20px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
section {
margin-bottom: 30px;
}
h2 {
color: #333;
font-size: 24px;
margin-bottom: 10px;
}
ul {
margin: 0;
padding: 0;
}
li {
margin-bottom: 10px;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
p {
margin-bottom: 10px;
}
注意:这只是一个简单的示例,你可以根据需要添加更多的内容和样式。
阅读全文