Advertisement
roshan_singh

Navigation menu (black background)

Apr 15th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body,ul,li{padding:0;margin:0;}
  6. ul{height:120px;background-color:black;list-style-type:none;}
  7. a{color:white;height:30px;display:block;margin-top:;font-size:23px;}
  8. li{float:left;text-align:center;height:30px;}
  9. li:nth-child(1),li:nth-child(2){width:50%;}
  10. li:nth-child(3),li:nth-child(6){width:100%}
  11. li:nth-child(4),li:nth-child(5){width:50%;}
  12. #head,ul,#main,#foot{width:230px;margin:0 auto;}
  13. #head{height:35px;font-size:22px;text-align:center;color:blue;}
  14. #main{height:150px;font-size:20px;}
  15. #foot{height:50px;font-size:18px;background:aqua;color:black;}
  16. </style>
  17. </head>
  18. <body>
  19. <div id="head">Header Is Here</div>
  20. <ul>
  21. <li><a href="home">Home</a></li>
  22. <li><a href="blog">Blog</a></li>
  23. <li><a href="works">My Works</a></li>
  24. <li><a href="about">About</a></li>
  25. <li><a href="contact">Contact</a></li>
  26. <li><a href="nav">Navigate</a></a></li>
  27. </ul>
  28. <div id="main">Main Content Is Here</div>
  29. <div id="foot">Footer Is Here</div>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement