html用css设计一个蓝色调页面含一个搜索框一条导航栏
时间: 2024-06-09 14:08:23 浏览: 78
可以使用以下代码实现:
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>蓝色调页面</title>
<link rel="stylesheet" type="text/css" 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>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
</header>
<main>
<form>
<input type="text" placeholder="搜索">
<button type="submit">搜索</button>
</form>
</main>
</body>
</html>
```
CSS代码:
```
body {
background-color: #1e90ff;
color: #fff;
font-family: Arial, sans-serif;
}
header {
padding: 20px;
}
nav {
display: inline-block;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 18px;
}
nav a:hover {
color: #ccc;
}
main {
margin: 50px auto;
text-align: center;
}
form {
display: inline-block;
}
input[type="text"] {
padding: 10px;
border-radius: 5px;
border: none;
}
button[type="submit"] {
padding: 10px 20px;
border-radius: 5px;
border: none;
background-color: #fff;
color: #1e90ff;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #1e90ff;
color: #fff;
}
```
效果如下图所示:
![蓝色调页面](https://img-blog.csdnimg.cn/20210622142916638.png)