编写一个有搜索栏,和可以导航的导航条的前端检索界面,而且在搜索栏下面有其他图片和链接,类似网站首页
时间: 2024-05-02 20:21:35 浏览: 46
搜索框(微信小程序源码).zip
以下是一个简单的前端检索界面示例:
```
<!DOCTYPE html>
<html>
<head>
<title>前端检索界面</title>
<style type="text/css">
/* 导航条样式 */
.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #333;
color: #fff;
}
.nav a {
color: #fff;
text-decoration: none;
margin-left: 20px;
}
.nav a:hover {
color: #f00;
}
/* 搜索栏样式 */
.search {
display: flex;
align-items: center;
margin-top: 50px;
}
.search input[type="text"] {
padding: 10px;
border: none;
border-radius: 5px;
box-shadow: 0 0 5px #ccc;
font-size: 18px;
width: 400px;
margin-right: 10px;
}
.search input[type="submit"] {
padding: 10px;
background-color: #f00;
color: #fff;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
}
/* 其他图片和链接 */
.others {
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.others img {
width: 200px;
height: 200px;
margin-right: 50px;
}
.others a {
color: #f00;
text-decoration: none;
font-size: 24px;
}
.others a:hover {
color: #333;
}
</style>
</head>
<body>
<nav class="nav">
<h1>前端检索界面</h1>
<div>
<a href="#">首页</a>
<a href="#">文章</a>
<a href="#">教程</a>
<a href="#">论坛</a>
<a href="#">关于</a>
</div>
</nav>
<div class="search">
<form>
<input type="text" placeholder="请输入搜索内容">
<input type="submit" value="搜索">
</form>
</div>
<div class="others">
<img src="https://picsum.photos/200">
<a href="#">更多链接</a>
</div>
</body>
</html>
```
这个界面由三部分组成:导航条、搜索栏、其他图片和链接。导航条包含了网站的主要导航链接,搜索栏包含了一个文本输入框和一个提交按钮,其他图片和链接则可以用来展示一些其他内容。这个界面可以根据需要进行修改和扩展,比如添加更多的导航链接、调整搜索栏的样式等等。
阅读全文