Advertisement
Guest User

Html assessment

a guest
Jun 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. <style>
  6. ul{
  7. list-style-type:none;
  8. margin:0;
  9. padding:0;
  10. overflow:hidden;
  11. background-color:#330;
  12. }
  13. li{
  14. display:inline;
  15. color:white;
  16. text-align:center;
  17. padding:14px 16px;
  18. text-decoration:none;
  19.  
  20. }
  21. li a:hover{
  22. background-color:#111;
  23. }
  24. #p1{
  25. background-color : white;
  26. height:100px
  27. }
  28. #p2{
  29. background-color : grey;
  30. height:120px
  31. }
  32. #p3{
  33. background-color : white;
  34. height:200px
  35. }
  36. #p4{
  37. background-color : grey;
  38. height:100px
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <ul>
  44. <li a href="#">Home
  45. </li>
  46. <li a href="#">Product
  47. </li>
  48. <li a href="#">Contact
  49. </li>
  50. <li a href="#">About
  51. </li>
  52. </ul>
  53. <div id="p1">
  54. </div>
  55. <div id="p2">
  56. </div>
  57. <div id="p3">
  58. </div>
  59. <div id="p4">
  60. </div>
  61.  
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement