Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- <style>
- /*
- Complementary style colors
- #DEAF72
- #FFE8C9
- #425DGB
- #6F7F87
- */
- body {
- background-color:#6F7F87;
- margin-left:5%;
- margin-right:5%;
- }
- button {
- background-color:#6F7F87;
- color:#DEAF72;
- height:75px;
- width:200px;
- margin-top:15px;
- border:1px solid #FFE8C9;
- font-family:"Goudy Stout", serif;
- font-size:17px;
- }
- h1,h2,h3,h4,h5,h6 {
- color:#DEAF72;
- font-family:"Comic Sans MS", cursive, sans-serif;
- }
- p,a {
- color:#DEAF72;
- font-family:"Goudy Stout", serif;
- font-size:19px;
- }
- p {
- text-align:left;
- }
- span {
- color:#FFFFFF;
- font-family:"Comic Sans MS", cursive, sans-serif;
- font-size:19px;
- }
- header,footer {
- text-align:center;
- }
- #main {
- padding:15px;
- width:100%;
- }
- #nav {
- text-align:center;
- }
- nav {
- text-align:center;
- }
- </style>
- </head>
- <body>
- <header>
- <h1></h1>
- </header>
- <table width="100%">
- <tr>
- <td id="nav">
- <nav>
- <a href="01-drones.html"><button>Article 1</button></a>
- <a href="02-mm.html"><button>Article 2</button></a>
- <a href="index.html"><button>Home</button></a>
- </nav>
- </td>
- </tr>
- <tr>
- <td id="main">
- <main>
- <p></p>
- </main>
- <hr>
- <footer>
- <span>
- Source: <u>Orlando Sentinel Newspaper for Friday, October 14th</u>
- </span>
- </footer>
- </td>
- </tr>
- </table>
- </body>
- </html>