Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <style>
  6. head {
  7. padding-top: 0;
  8. margin-top: 0;
  9. border: none;
  10. }
  11.  
  12. header {
  13. width: 100%;
  14. height: 15%;
  15. padding-bottom: 20px;
  16. background-color: navy;
  17. align-content: center;
  18. align-items: center;
  19. border-bottom: pink 5px solid;
  20. }
  21.  
  22. #image1 {
  23. display: block;
  24. margin-left: auto;
  25. margin-right: auto;
  26. height: 10vh;
  27. width: 10vh;
  28.  
  29. }
  30.  
  31. nav {
  32. height: 78vh;
  33. width: 30%;
  34. background-color: navy;
  35. color: white;
  36. float: left;
  37. margin-right: 50px;
  38. }
  39.  
  40. nav {
  41. width: 30%;
  42. color: white;
  43. }
  44.  
  45. ul {
  46. list-style-type: none;
  47. margin: 0;
  48. padding: 0;
  49. text-align: center;
  50.  
  51. }
  52.  
  53. li{
  54. display:block;
  55. }
  56.  
  57. li a {
  58. color: white;
  59. text-decoration: none;
  60. display: block;
  61. padding: 8px 8px;
  62. }
  63.  
  64. li a:hover {
  65. background-color: purple;
  66. }
  67.  
  68. #main-box {
  69. float: left;
  70. }
  71.  
  72. #img1{
  73. width: 50vh;
  74. height: 20vh;
  75. border: pink 5px solid;
  76. }
  77.  
  78. footer {
  79. float: left;
  80. height: 7.5vh;
  81. width: 100%;
  82. background-color: navy;
  83. color: white;
  84. border-top: 5px pink solid;
  85. padding-top: 20px;
  86. text-align: center;
  87. }
  88. </style>
  89. </head>
  90.  
  91. <body>
  92.  
  93. <body style="margin: 0;"></body>
  94. <header>
  95. <img src="images1.jpg" id="image1">
  96. </header>
  97.  
  98. <nav>
  99. <ul>
  100. <li>
  101. <a href="">
  102. <h3>Home</h3>
  103. </a>
  104. </li>
  105. <li>
  106. <a href="">
  107. <h3>About</h3>
  108. </a>
  109. </li>
  110. <li>
  111. <a href="">
  112. <h3>Services</h3>
  113. </a>
  114. </li>
  115. <li>
  116. <a href="contact.html">
  117. <h3>Contact Us</h3>
  118. </a>
  119. </li>
  120. </ul>
  121. </nav>
  122.  
  123. <div id="main-box">
  124. <h2>About Us</h2>
  125. <img src="images.jpg" id="img1">
  126. </div>
  127.  
  128. <footer>
  129. <p>© 2018</p>
  130. </footer>
  131.  
  132. </body>
  133.  
  134. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement