HTML

Newspaper Lab / 02-mm.html

Feb 24th, 2017
139
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <style>
  6. /*
  7. Complementary style colors
  8. #DEAF72
  9. #FFE8C9
  10. #425DGB
  11. #6F7F87
  12. */
  13.  
  14. body {
  15.         background-color:#6F7F87;
  16.         margin-left:5%;
  17.         margin-right:5%;
  18. }
  19. button {
  20.         background-color:#6F7F87;
  21.         color:#DEAF72;
  22.         height:75px;
  23.         width:200px;
  24.         margin-top:15px;
  25.         border:1px solid #FFE8C9;
  26.         font-family:"Goudy Stout", serif;
  27.         font-size:17px;
  28. }
  29. h1,h2,h3,h4,h5,h6 {
  30.         color:#DEAF72;
  31.         font-family:"Comic Sans MS", cursive, sans-serif;
  32. }
  33. p,a {
  34.         color:#DEAF72;
  35.         font-family:"Goudy Stout", serif;
  36.         font-size:19px;
  37. }
  38. p {
  39.         text-align:left;
  40. }
  41. span {
  42.         color:#FFFFFF;
  43.         font-family:"Comic Sans MS", cursive, sans-serif;
  44.         font-size:19px;
  45. }
  46. header,footer {
  47.         text-align:center;
  48. }
  49. #main {
  50.         padding:15px;
  51.         width:100%;
  52. }
  53. #nav {
  54.         text-align:center;
  55. }
  56. nav {
  57.         text-align:center;
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <header>
  63. <h1></h1>
  64. </header>
  65. <table width="100%">
  66. <tr>
  67. <td id="nav">
  68. <nav>
  69. <a href="01-drones.html"><button>Article 1</button></a>
  70. <a href="02-mm.html"><button>Article 2</button></a>
  71. <a href="index.html"><button>Home</button></a>
  72. </nav>
  73. </td>
  74. </tr>
  75. <tr>
  76. <td id="main">
  77. <main>
  78. <p></p>
  79. </main>
  80. <hr>
  81. <footer>
  82. <span>
  83. Source: <u>Orlando Sentinel Newspaper for Friday, October 14th</u>
  84. </span>
  85.  
  86. </footer>
  87. </td>
  88. </tr>
  89. </table>
  90. </body>
  91. </html>
Comments
  • User was banned
Add Comment
Please, Sign In to add comment