html静态页面代码
html<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>静态页面示例</title>
<style>
/* 在这里添加 CSS 样式 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
nav {
background-color: #666;
color: #fff;
padding: 10px;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
section {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>欢迎来到我的网站</h1>
</header>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">关于我们</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
<section>
<h2>欢迎访问我们的网站!</h2>
<p>这是一个简单的静态页面示例。</p>
<p>您可以在这里放置您的内容。</p>
</section>
<footer>
<p>© 2024 我的网站。保留所有权利。</p>
</footer>
</body>
</html>
这个 HTML 页面包含了一个简单的网站结构,包括头部(header)、导航(nav)、内容(section)和页脚(footer)部分。CSS 样式用来美化页面的外观和布局。