Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Hassen - 2 Column Template File</title>
- <style>
- body {
- background-color: yellow;
- font-family: courier;
- }
- h1, h2 {
- font-family: Verdana;
- color: blue;
- }
- h2 {
- color: blue;
- }
- header {
- background-color: blue;
- color: white;
- width: 800px;
- padding: 10px;
- margin-left: auto;
- margin-right: auto;
- }
- /*force the ordered list to appear inline, horiztonally */
- nav ul li {
- display: inline-block;
- background-color: yellow;
- padding: 10px;
- font-size: 1.2em;
- width: 15%;
- text-align: center;
- }
- nav a {
- color: grey;
- }
- footer {
- background-color: white;
- font-size: .7em;
- width: 800px;
- padding: 10px;
- margin-left: auto;
- margin-right: auto;
- }
- /*the id is used to make layout on the center of the page*/
- #wrapper {
- background-color: grey;
- width: 800px;
- margin-left: auto;
- margin-right: auto;
- color: white;
- }
- /*the class to use on divs to make them appear next to each other*/
- /*the width of these divs is set to be half the width of the wrapper, minus 5 for margin and 5 for padding*/
- .left {
- float: left;
- display: inline-block;
- background-color: white;
- width: 290px;
- margin: 5px;
- padding: 5px;
- clear: both;
- }
- .right {
- display: inline-block;
- width: 400px;
- margin: 5px;
- padding: 5px;
- }
- </style>
- </head>
- <body>
- <header>
- <nav>
- <ul>
- <li><a href="#">Home Page</a></li>
- <li><a href="#">Link 2</a></li>
- <li><a href="#">Link 3</a></li>
- <li><a href="#">Link 4</a></li>
- <li><a href="#">About Me</a></li>
- </ul>
- </nav>
- </header>
- <div id="wrapper">
- </div>
- <footer>
- <div class="left">
- © Alley Hassen 2017
- </div>
- <div class="right">
- Style Guide:
- <ul>
- <li>Blue, White, Yellow, Gray</li>
- <li>Serif: Courier; Sans-serif: Arial</li>
- </ul>
- </div>
- </footer>
- </body>
- </html>
Advertisement