is there something wrong with this code before i copy&paste it to blogspot?
Code:
<html>
<head>
<style type="text/css">
ul#list-nav {
list-style:none;
margin:0;
padding:0;
width:525px
}
ul#list-nav li {
display:inline
}
ul#list-nav li a {
text-decoration:none;
padding:0;
width:100px;
background:BLUE;
color:#eee;
float:left;
text-align:center;
}
ul#list-nav li a:hover {
background:#FFFFFF;
color:BLUE;
}
</style>
</head>
<body>
<ul id="list-nav">
<li><a href="#">BLOG</a></li>
<li><a href="#">RSS</a></li>
<li><a href="#">TWITTER</a></li>
<li><a href="#">ARCHIVE</a></li>
<li><a href="#">ABOUT</a></li>
</ul>
</body>
</html>
Bookmarks