mardi 3 mai 2011

Pure CSS3 Menu

http://wolfcms.office-web.net/extensions/trucs-et-astuces/menu-css3.html

http://www.webdesignerwall.com/demo/css3-dropdown-menu/css-gradient-dropdown.html

http://matthewjamestaylor.com/blog/centered-dropdown-menus

http://snipplr.com/view/41112/multilevel-dropdown-menu-in-puer-css/

CSS Drop Down Menu Tutorial Code

http://ago.tanfa.co.uk/css/examples/menu/hs7.html

Simple Navigational Bar



<html>
<head>
<style>
ul
{
list-style-type:none;
margin:0;
padding:0;
text-align:center;
}

li
{
    display:inline;
    margin: 0 1.15em;
}

</style>
</head>
<body>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
</body>
</html>