Advertisement
Guest User

Untitled

a guest
May 25th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
  6. <title>Willow Lake B&amp;B</title>
  7. <style>
  8. body {
  9. font-family: 'Arial', sans-serif;
  10. background-color:#7f776b;
  11. text-align: center;
  12. color: #c8c8c8;
  13. }
  14. #wrapper {
  15. max-width: 574px;
  16. margin: 0 auto;
  17. background-color: #4b5159;
  18. }
  19. #head {
  20. background-color: #4b5159;
  21. height: 270px;
  22. margin: 20px auto;
  23. max-width: 960px;
  24. padding: 4px;
  25. }
  26. #bodywrap {
  27. max-width: 960px;
  28. height: 600px;
  29. background-color: #594c4b;
  30. margin: 30px auto;
  31. padding: 4px;
  32.  
  33. }
  34. nav ul ul {
  35. display: none;
  36. }
  37. nav ul li:hover > ul {
  38. display: block;
  39. }
  40. nav ul {
  41. background: #818181;
  42. padding: 0 20px;
  43. border-radius: 10px;
  44. list-style: none;
  45. position: relative;
  46. display: inline-table;
  47. }
  48. nav ul:after {
  49. content: ""; clear: both; display: block;
  50. }
  51. nav ul li {
  52. float: left;
  53. }
  54. nav ul li:hover {
  55. background: #6e2323;
  56. }
  57. nav ul li:hover a {
  58. color: #c8c8c8;
  59. }
  60. nav ul li a {
  61. display: block; padding: 25px 40px;
  62. color: #c8c8c8; text-decoration: none;
  63. }
  64. nav ul ul {
  65. background: #6e3535; border-radius: 0px; padding: 0;
  66. position: absolute; top: 100%;
  67. }
  68. nav ul ul li {
  69. float: none;
  70. border-top: 1px solid #6e1515;
  71. border-bottom: 1px solid #6e1515;
  72. position: relative;
  73. }
  74. nav ul ul li a {
  75. padding: 15px 40px;
  76. color: #c8c8c8;
  77. }
  78. nav ul ul li a:hover {
  79. background: #6e2323;
  80. }
  81. nav ul ul ul {
  82. position: absolute; left: 100%; top:0;
  83. }
  84. header {
  85. margin: 0 auto;
  86. }
  87. header h1 {
  88. text-transform: uppercase;
  89. text-align: center;
  90. color: #c8c8c8;
  91. line-height: 50px;
  92. }
  93. header h2 {
  94. font-variant: small-caps;
  95. text-align: center;
  96. color: #c8c8c8;
  97. }
  98. </style>
  99. </head>
  100. <body>
  101. <div id="head">
  102. <header>
  103. <h1>Willow Lake</h1>
  104. <h2>bed & breakfast</h2>
  105. </header>
  106. <div id="wrapper">
  107. <nav>
  108. <ul class="main_menu">
  109. <li><a href="#">home</a></li>
  110. <li><a href="about.html">about us</a>
  111. <ul>
  112. <li><a href="gallery.html">photo gallery</a></li>
  113. </ul>
  114. </li>
  115. <li><a href="deals.html">deals</a>
  116. <ul>
  117. <li><a href="rooms.html">rooms</a></li>
  118. <li><a href="vacations.html">vacations</a></li>
  119. </ul>
  120. </li>
  121. <li><a href="contact.html">contact us</a></li>
  122. </ul>
  123. </nav>
  124. </div><!--wrapper-->
  125. </div><!--head-->
  126. <div id="bodywrap">
  127. <h2>Welcome to Willow Lake</h2>
  128. </div><!--bodywrap-->
  129. </body>
  130. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement