Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4.  
  5. <head>
  6. <style>
  7. #header1 {
  8. background-color:blue;
  9. color: #FF0000;
  10. text-align:center;
  11. padding:5px;
  12. size: 130%;
  13. }
  14.  
  15. #header2 {
  16. color: #660033;
  17. text-align:center;
  18. padding:5px;
  19. size: 120%;
  20.  
  21. }
  22.  
  23. #header3 {
  24. color: #0066FF;
  25. text-align:center;
  26. padding:5px;
  27. size: 110%;
  28. }
  29. #nav {
  30. line-height:30px;
  31. background-color:#eeeeee;
  32. height:300px;
  33. width:100px;
  34. float:left;
  35. padding:5px;
  36. }
  37. #section {
  38. width:350px;
  39. float:left;
  40. padding:10px;
  41. }
  42. #footer {
  43. background-color:blue;
  44. color:white;
  45. clear:both;
  46. text-align:center;
  47. padding:5px;
  48. }
  49.  
  50. #regulartext {
  51. font-family: "Helvetian,Comic Sans";
  52. }
  53. <style>
  54. a:link {color:#0066FF; background-color:transparent; text-decoration:none}
  55. a:visited {color:#FF0000; background-color:transparent; text-decoration:none}
  56. a:active {color:#660033; background-color:transparent; text-decoration:underline}
  57. </style>
  58. </style>
  59. </head>
  60.  
  61. <body>
  62.  
  63. <div id="header1">
  64.  
  65. <h1>DAV Institute</h1>
  66. </div>
  67.  
  68. <div id="nav">
  69. <a href="url">link 1</a> <br>
  70. <a href="url">link 2</a> <br>
  71. <a href="url">link 3 </a> <br>
  72. </div>
  73.  
  74. <div id="section">
  75. </div>
  76. <div id="header2">
  77. <h2>Header 2</h2>
  78. </div>
  79.  
  80. <div id="regulartext">
  81. <p>
  82. Mauris dapibus vulputate orci, vel pellentesque augue efficitur ac. Aenean consectetur rhoncus lorem in sagittis. Donec sit amet lacus ex. In vestibulum enim ipsum, eget mollis augue bibendum ut.
  83. </p>
  84. </div>
  85. <div id="header3">
  86. <h3>Header 3</h3>
  87. </div>
  88.  
  89. <p>
  90. Suspendisse eget sem porta, rutrum neque sit amet, vehicula libero. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  91. </p>
  92.  
  93. </div>
  94. <div id="footer">
  95. Copyright David Johns
  96. </div>
  97.  
  98. </body>
  99. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement