<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>導(dǎo)航條</title>
<style type="text/css">
ul{
margin: 0;
padding: 0;
}
.a{
width:960px;
height: 40px;
background-color: #55a8ea;
margin: 50px auto;
}
.a ul li{
list-style-type: none;
float: left;
width: 100px;
text-align: center;
}
.a ul li a{
text-decoration: none;
color: white;
font-size: 14px;
line-height: 40px;
}
.a ul li:hover{
background-color: #00619f;
}
.f{
position: relative;
top: -10px;
left: -267px;
}
</style>
</head>
<body>
<div class="a">
<ul>
<li><a href="">首?頁</a></li>
<li><a href="">網(wǎng)站建設(shè)</a></li>
<li><a href="">程序開發(fā)</a></li>
<li><a href="">網(wǎng)絡(luò)營銷</a></li>
<img src="new.png" class="f">
<li><a href="">企業(yè)VI</a></li>
<li><a href="">案例展示</a></li>
<li><a href="">聯(lián)系我們</a></li>
</ul>
</div>
</body>
<html>