Advertisement
Guest User

Untitled

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