简单的导航菜单

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

<!document type html>
<html>
<head>
     <title>Sample Menu</title>
     <style type="text/css">
        .ullicss {height:30px;background:green;}
        .ullicss ul{list-style:none;}
        .ullicss li{float:left; width:100px; margin-left:3px; line-height:30px;}
        .ullicss a:link   {color:pink; font-weight:bold; text-decoration:none; background:green;}
        .ullicss a:visited{color:pink; font-weight:bold; text-decoration:none; background:green;}
        .ullicss a:hover  {color:green; font-weight:bold; text-decoration:none; background:yellow;}
        .ullicss a  {display:block; text-align:center; height:30px;}
    </style>
</head>
<body>
    <div class="ullicss">
        <ul>
            <li><a target="_parent" href="http://www.baidu.com">百度</a></li>
            <li><a target="_blank" href="http://www.google.com">谷歌</a></li>
            <li><a target="_self" href="http://www.sina.com.cn/">新浪</a></li>
            <li><a target="_top" href="http://www.oschina.net/">开源中国</a></li>
            <li><a target="_blank" href="http://www.w3school.com.cn/">w3cSchool</a></li>
            <li><a target="_blank" href="http://www.youdao.com">有道</a></li>
        </ul>
    </div>

</body>
</html>