Files
ClassContent/历届学生/吴欣阳/项目开发/上课项目/菜鸟教程导航.html
2024-09-27 02:06:13 +08:00

100 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>菜鸟教程导航</title>
<style>
/*清除标签的默认样式*/
body,
ul {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
li {
list-style: none;
}
.meun ul,
.center {
margin: 0 auto;
width: 1260px;
}
.meun ul li {
float: left;
margin-right: 20px;
line-height: 34px;
}
.meun ul li a {
color: white;
font-size: 13px;
}
.meun {
height: 34px;
background: #96b97d;
}
.logo {
margin-top: 17px;
margin-bottom: 15px;
}
.logo img {
width: 258px;
height: 39px;
}
.logo input {
width: 453px;
height: 37px;
float: right;
border: 1px solid #c8c8c8;
background: #fff;
border-radius: 3px;
box-shadow: -2px 2px 5px #eeefed;
}
</style>
</head>
<body>
<div class="header">
<div class="logo">
<div class="center">
<img src="https://www.runoob.com/wp-content/themes/runoob/assets/img/runoob-logo.png" alt="">
<input type="text" placeholder="搜索……">
</div>
</div>
<div class="meun">
<ul>
<li>
<a href="">首页</a>
</li>
<li>
<a href="">HTML</a>
</li>
<li>
<a href="">CSS</a>
</li>
<li>
<a href="">JS</a>
</li>
<li>
<a href="">Java</a>
</li>
</ul>
</div>
</div>
</body>
</html>