Advertisement
roshan_singh

Horizontal Menu (multiple colors)

Apr 15th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.46 KB | None | 0 0
  1. <head>
  2. <style>
  3. *{padding:0;margin:0;:;}
  4. table{}
  5. td{width:100px;height:40px;text-align:center;font-size:22px;color:white;}
  6. td:nth-child(1){background:lightgreen;}
  7. td:nth-child(2){background:yellow;}
  8. td:nth-child(3){background:red;}
  9. td:nth-child(4){background:lightblue;}
  10. td:nth-child(5){background:blue;}
  11. </style>
  12. </head>
  13. <body>
  14. <table cellspacing="0"><tr>
  15. <td>Home</td>
  16. <td>About</td>
  17. <td>Contact</td>
  18. <td>Submit</td>
  19. <td>Terms</td>
  20. </tr></table>
  21. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement