HTML

2columnlayout.html

Jan 31st, 2018
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.99 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Two Column Layout</title>
  5. <meta charset="utf-8">
  6. <style>
  7. body {
  8.             background:#000066;
  9. }
  10. #wrapper {
  11.             width:80%;
  12.             margin-left:auto;
  13.             margin-right:auto;
  14.             background:#EAEAEA;
  15. }
  16. header {
  17.             background:#CCCCFF;
  18. }
  19. h1 {
  20.             margin:0;
  21.             padding:10px;
  22. }
  23. nav {
  24.             float:left;
  25.             width:90px;
  26.             padding:10px;
  27. }
  28. main {
  29.             margin-left:100px;
  30.             padding:10px;
  31.             background-color:#FFF;
  32. }
  33. footer {
  34.             text-align:center;
  35.             font-style:italic;
  36.             background-color:#CCCCFF;
  37.             clear:both;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <div id="wrapper">
  43. <header>
  44. <h1>Layout Example</h1>
  45. </header>
  46. <nav>
  47. <a href="#">Home</a><br>
  48. <a href="#">Page 1</a><br>
  49. <a href="#">Page 2</a>
  50. </nav>
  51. <main>
  52. <h2>Page heading</h2>
  53. <p>This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. </p>
  54. </main>
  55. <footer>
  56. &copy; Jacob Howard 2018
  57. </footer>
  58. </div>
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment