HTML

projectmanagement.html

Feb 23rd, 2017
168
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Hassen - Project Management</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.     color:#000;
  34. }
  35. nav a {
  36.     color:grey;
  37. }
  38. footer {
  39.     background-color:white;
  40.     font-size:.7em;
  41.     width:800px;
  42.     padding:10px;
  43.     margin-left:auto;
  44.     margin-right:auto;
  45. }
  46. /*the id is used to make layout on the center of the page*/
  47. #wrapper {
  48.     background-color:grey;
  49.     width:800px;
  50.     margin-left:auto;
  51.     margin-right:auto;
  52.     color:white;
  53.     padding:10px;
  54. }
  55. /*the class to use on divs to make them appear next to each other*/
  56. /*the width of these divs is set to be half the width of the wrapper, minus 5 for margin and 5 for padding*/
  57. .left {
  58.     float:left;
  59.     display:inline-block;
  60.     background-color:white;
  61.     width:290px;
  62.     margin:5px;
  63.     padding:5px;
  64.     clear:both;
  65.     color:black;
  66.     height:100%;
  67. }
  68. .right {
  69.     display:inline-block;
  70.     width:400px;
  71.     margin:5px;
  72.     padding:5px;
  73. }
  74. </style>
  75. </head>
  76. <body>
  77. <header>
  78.   <nav>
  79.     <ul>
  80.       <li><a href="#">Home Page</a></li>
  81.       <li><a href="#">Link 2</a></li>
  82.       <li><a href="Porject Management">Link 3</a></li>
  83.       <li><a href="#">Link 4</a></li>
  84.       <li><a href="#">Link 5</a></li>
  85.     </ul>
  86.   </nav>
  87. </header>
  88. <div id="wrapper">
  89.   <h1>Project Management</h1>
  90.   <h2>Define</h2>
  91.   <img src="assets/Project-Management-Define.jpg" width="300" height="227" alt="image 1">
  92.   <hr>
  93.   <h2>Structure</h2>
  94.   <img src="assets/Project-Management-Structure.jpg" width="300" height="227" alt="image 2">
  95.   <hr>
  96.   <h2>Design</h2>
  97.   <img src="assets/Project-Management-Design.jpg" width="300" height="227" alt="image 3">
  98.   <hr>
  99.   <h2>Build and Test</h2>
  100.   <img src="assets/Project-Management-Build-Test.jpg" width="300" height="227" alt="image 4">
  101.   <hr>
  102.   <h2>Delivery</h2>
  103.   <img src="assets/Project-Management-Delivery.jpg" width="300" height="227" alt="iamge 5">
  104.   <hr>
  105. </div>
  106. <footer>
  107.   <div class="left">
  108. &copy; Alley Hassen 2017 &nbsp; &nbsp;
  109.     <h4>Contact: <a href="mailto:[email protected]">[email protected]</a></h4>
  110.   </div>
  111.   <div class="right">
  112. Style Guide:
  113.     <ul>
  114.       <li>Blue, White, Yellow, Gray</li>
  115.       <li>Serif: Courier; Sans-serif: Arial</li>
  116.     </ul>
  117.   </div>
  118. </footer>
  119. </body>
  120. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment