Advertisement
Guest User

Untitled

a guest
Dec 10th, 2013
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. HTML:
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>The Title</title>
  7.  
  8. <div id="header">
  9. <h1>The Website Title</h1>
  10. </div>
  11.  
  12. </head>
  13. <body>
  14.  
  15. <div id="linkbar">
  16. <a href="#">Link One</a> | <a href="#">Link Two</a>
  17. </div>
  18.  
  19. <div id="backgroundleft">
  20. </div>
  21.  
  22. <div id="content">
  23. <p></p>
  24. </div>
  25.  
  26. <div id="backgroundright">
  27. </div>
  28.  
  29. <div id="copyright">
  30. </div>
  31.  
  32. </body>
  33. </html>
  34.  
  35. CSS:
  36.  
  37. p {
  38. display: inline;
  39. }
  40. #header {
  41. background-color: lightblue;
  42. text-align: center;
  43. border: 2px solid black;
  44. }
  45.  
  46. #header h1 {
  47. font-family: Garamond;
  48. color: black;
  49. }
  50.  
  51. #linkbar {
  52. text-align: center;
  53. border: 2px solid black;
  54. margin-top: -2px;
  55. }
  56. a:link {
  57. text-decoration: none;
  58. color: grey;
  59. }
  60.  
  61. a:visited {
  62. text-decoration: none;
  63. color: grey;
  64. }
  65.  
  66. a:hover {
  67. text-decoration: underline;
  68. color: black;
  69. }
  70.  
  71. #backgroundleft {
  72. background-color: grey;
  73. height: 500px;
  74. width: 20px;
  75. border: 2px solid black;
  76. margin-top: -2px;
  77. float: left;
  78. position: relative;
  79. display: inline;
  80. }
  81.  
  82. #content {
  83. float: center;
  84. position: relative;
  85. display: inline;
  86. width: 500px;
  87. height: 500px;
  88. border: 2px solid black;
  89. }
  90.  
  91. #backgroundright {
  92. background-color: grey;
  93. height: 500px;
  94. width: 20px;
  95. border: 2px solid black;
  96. margin-top: -2px;
  97. float: right;
  98. position: relative;
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement