HTML

2ColTemp.dwt

Feb 24th, 2017
151
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Hassen - 2 Column Template File</title>
  5. <style>
  6. body {
  7.     background-color: yellow;
  8.     font-family: courier;
  9. }
  10. h1, h2 {
  11.     font-family: Verdana;
  12.     color: blue;
  13. }
  14. h2 {
  15.     color: blue;
  16. }
  17. header {
  18.     background-color: blue;
  19.     color: white;
  20.     width: 800px;
  21.     padding: 10px;
  22.     margin-left: auto;
  23.     margin-right: auto;
  24. }
  25. /*force the ordered list to appear inline, horiztonally */
  26. nav ul li {
  27.     display: inline-block;
  28.     background-color: yellow;
  29.     padding: 10px;
  30.     font-size: 1.2em;
  31.     width: 15%;
  32.     text-align: center;
  33. }
  34. nav a {
  35.     color: grey;
  36. }
  37. footer {
  38.     background-color: white;
  39.     font-size: .7em;
  40.     width: 800px;
  41.     padding: 10px;
  42.     margin-left: auto;
  43.     margin-right: auto;
  44. }
  45. /*the id is used to make layout on the center of the page*/
  46. #wrapper {
  47.     background-color: grey;
  48.     width: 800px;
  49.     margin-left: auto;
  50.     margin-right: auto;
  51.     color: white;
  52. }
  53. /*the class to use on divs to make them appear next to each other*/
  54. /*the width of these divs is set to be half the width of the wrapper, minus 5 for margin and 5 for padding*/
  55. .left {
  56.     float: left;
  57.     display: inline-block;
  58.     background-color: white;
  59.     width: 290px;
  60.     margin: 5px;
  61.     padding: 5px;
  62.     clear: both;
  63. }
  64. .right {
  65.     display: inline-block;
  66.     width: 400px;
  67.     margin: 5px;
  68.     padding: 5px;
  69. }
  70. </style>
  71. </head>
  72.  
  73. <body>
  74. <header>
  75.   <nav>
  76.     <ul>
  77.       <li><a href="#">Home Page</a></li>
  78.       <li><a href="#">Link 2</a></li>
  79.       <li><a href="#">Link 3</a></li>
  80.       <li><a href="#">Link 4</a></li>
  81.       <li><a href="#">About Me</a></li>
  82.     </ul>
  83.   </nav>
  84. </header>
  85. <div id="wrapper">
  86. </div>
  87. <footer>
  88.   <div class="left">
  89. &copy; Alley Hassen 2017 &nbsp; &nbsp;
  90.     <h4>Contact: <a href="mailto:[email protected]">[email protected]</a></h4>
  91.   </div>
  92.   <div class="right">
  93. Style Guide:
  94.     <ul>
  95.       <li>Blue, White, Yellow, Gray</li>
  96.       <li>Serif: Courier; Sans-serif: Arial</li>
  97.     </ul>
  98.   </div>
  99. </footer>
  100. </body>
  101. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment