Breaking News

Webdesign Part (2)

    How to make a menu bar for your Website

  1. Just go on Note Pad and type
  
 <html>
<title>as your wish</title>
<head>
<body>
     <nav id="rolling-nav">
    <ul>
        <li><a href="#" data-clone="Home">Home</a></li>
        <li><a href="#" data-clone="About">About</a></li>
        <li><a href="#" data-clone="Portfolio">Portfolio</a></li>
        <li><a href="#" data-clone="Comments">Comments</a></li>
        <li><a href="#" data-clone="Contact">Contact</a></li>
    </ul>
</nav>






</body>
</head>
</html>

No comments