Guest User

Untitled

a guest
Jan 15th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. <head>
  2. <title>working</title>
  3.  
  4. <link href="style.css" rel="stylesheet" type="text/css" />
  5. </head>
  6. <body>
  7. <div id="container">
  8.  
  9. <div id="banner"> </div> <!-- End banner div -->
  10.  
  11. <div id="navcontainer">
  12. <ul id="navlist">
  13. <li><a href="index.php">HOMEPAGE</a></li>
  14. <li><a href="about.php">ABOUT</a></li>
  15. <li><a id="current" href="index.php">HOMEPAGE</a></li>
  16. <li><a href="index.php">HOMEPAGE</a></li>
  17. </ul>
  18. </div> <!-- End navcontainer div -->
  19.  
  20.  
  21.  
  22. <div id="content">main content
  23. </div> <!-- End content div -->
  24.  
  25.  
  26. <div id="sidebar"> sidebar content
  27. </div> <!-- End sidebar div -->
  28.  
  29.  
  30.  
  31. <div id="footer"> foooter </div> <!-- End footer div -->
  32.  
  33.  
  34.  
  35. </div> <!-- End container div -->
  36.  
  37. </body>
  38.  
  39. html, body {
  40. height: 100%; /* Required */
  41. }
  42.  
  43. body {
  44. margin : 0;
  45. padding : 0;
  46.  
  47. font : 75% "Trebuchet MS", verdana, arial, tahoma, sans-serif;
  48. line-height : 1.8em;
  49. color : #000000;
  50. background : #F5F5FF;
  51. }
  52.  
  53. #container {
  54.  
  55. position: relative;
  56. min-height: 100%;
  57. width : 800px;
  58. margin : 0 auto 0 auto;
  59. border-style: solid;
  60. border-width:1px;
  61. background : #FFFFCC;
  62. }
  63.  
  64.  
  65.  
  66.  
  67. #banner {
  68.  
  69. color : #000000;
  70. border-style: solid;
  71. border-width:1px;
  72. height : 150px;
  73. background : #fff
  74. }
  75.  
  76.  
  77.  
  78. #content {
  79. min-height: 100%;
  80. float:right
  81. padding : 10px;
  82. margin-left : 200px;
  83. margin-bottom : 10px;
  84. color : #666;
  85. background : #F5EBCC;
  86. border-left-style:dotted;
  87. border-left-color:#8F8F00;
  88. border-bottom-style:dotted;
  89. border-bottom-color:#8F8F00;
  90. }
  91.  
  92.  
  93.  
  94. #sidebar {
  95.  
  96. float : left;
  97. width : 20px;
  98.  
  99. padding : 10px;
  100.  
  101. color : #000000;
  102.  
  103. border-style: solid;
  104. border-width:1px;
  105. }
  106.  
  107.  
  108. #footer {
  109. clear:both;
  110. position:relative;
  111. bottom: 0;
  112. width: 800px;
  113. background : #FFFFCC;
  114. }
  115.  
  116. #navcontainer {
  117. background:#E0E066;
  118.  
  119. }
  120.  
  121. #navlist {
  122. list-style: none; /* list-style: none removes bullets */
  123. margin: 0px;
  124. padding : 0.5em 0;
  125. }
  126.  
  127. #navlist li {
  128. display: inline;
  129. margin : 0;
  130. }
  131.  
  132. #navlist li a {
  133. padding : 0.5em 0.5em;
  134. margin: 0;
  135. color : #000;
  136. background : #B8B800;
  137. text-decoration : none;
  138. }
  139.  
  140. #navlist li a:hover {
  141. color : yellow;
  142. background : #8F8F00 url(img/menu_arrow.gif) bottom center no-repeat;
  143. }
  144.  
  145. #navlist li a#current {
  146. color : #fff;
  147. background : #8F8F00 url(img/menu_arrow.gif) bottom center no-repeat;
  148. }
Add Comment
Please, Sign In to add comment