Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Hassen - Project Management</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;
- color:#000;
- }
- 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;
- padding:10px;
- }
- /*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;
- color:black;
- height:100%;
- }
- .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="Porject Management">Link 3</a></li>
- <li><a href="#">Link 4</a></li>
- <li><a href="#">Link 5</a></li>
- </ul>
- </nav>
- </header>
- <div id="wrapper">
- <h1>Project Management</h1>
- <h2>Define</h2>
- <img src="assets/Project-Management-Define.jpg" width="300" height="227" alt="image 1">
- <hr>
- <h2>Structure</h2>
- <img src="assets/Project-Management-Structure.jpg" width="300" height="227" alt="image 2">
- <hr>
- <h2>Design</h2>
- <img src="assets/Project-Management-Design.jpg" width="300" height="227" alt="image 3">
- <hr>
- <h2>Build and Test</h2>
- <img src="assets/Project-Management-Build-Test.jpg" width="300" height="227" alt="image 4">
- <hr>
- <h2>Delivery</h2>
- <img src="assets/Project-Management-Delivery.jpg" width="300" height="227" alt="iamge 5">
- <hr>
- </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