写拉钩网页页脚代码html,css
时间: 2024-12-17 07:40:20 浏览: 8
在HTML中,通常会在页面底部添加页脚,用于放置版权信息、联系方式等固定的元素。下面是一个简单的例子展示了如何编写HTML和CSS来创建一个基本的页脚:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>页脚示例</title>
<link rel="stylesheet" href="footer.css"> <!-- 引入CSS文件 -->
</head>
<body>
<!-- 正文内容... -->
<!-- 页脚部分 -->
<footer class="footer">
<div class="container">
<p>© 2023 拉钩网 - All Rights Reserved.</p>
<ul class="contact-links">
<li><a href="#">联系我们</a></li>
<li><a href="#">隐私政策</a></li>
<li><a href="#">使用条款</a></li>
</ul>
</div>
</footer>
</body>
</html>
```
然后,在`footer.css`中,你可以设置一些样式:
```css
.footer {
background-color: #f5f5f5;
text-align: center;
padding: 20px;
color: #666;
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
z-index: 999;
}
.container {
display: flex;
justify-content: space-between;
}
.contact-links li a {
color: #999;
text-decoration: none;
margin-right: 10px;
}
.contact-links li a:last-child {
margin-right: 0;
}
```
阅读全文