快速复制粘贴
线线吧
全部回复
仅看楼主
level 1
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>简易导航页</title>
<style>
/* 样式部分仅作示意,具体样式需根据设计进行调整 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
background-color: #f2f2f2;
padding: 10px;
text-align: center;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.nav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.nav li {
float: left;
}
.nav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.nav li a:hover {
background-color: #111;
}
.content {
padding: 20px;
}
.links {
display: flex;
flex-wrap: wrap;
}
.link-item {
flex: 1 0 20%;
margin: 10px;
text-align: center;
}
.link-item a {
display: block;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
text-decoration: none;
color: #333;
}
.link-item a:hover {
background-color: #f2f2f2;
}
.footer {
background-color: #f2f2f2;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<div class="header">
<div class="logo">简易导航页</div>
<!-- 这里可以添加搜索框 -->
</div
2024年05月09日 07点05分 1
1