Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Code written by Jacob Howard
- 11/18/16
- If you wish to use this template, you do not have to ask for permission.
- If you wish to use this template for commercial purposes, please leave this comment.
- -->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Code Template 3</title>
- <style>
- /*
- Code written by Jacob Howard
- 11/18/16
- If you wish to use this template, you do not have to ask for permission.
- If you wish to use this template for commercial purposes, please leave this comment.
- */
- body {
- background:#EEE;
- color:#371886;
- font-family:"Arial Narrow", sans-serif;
- font-size:1.4em;
- }
- #wrapper {
- width:80%;
- max-width:1600px;
- min-width:1000px;
- margin-left:auto;
- margin-right:auto;
- padding:15px;
- margin-top:2%;
- }
- #holder {
- width:100%;
- }
- #tophead {
- border:2px solid #371886;
- width:100%;
- text-align:center;
- border-radius:15px 15px 0px 0px
- }
- nav button {
- border:2px solid #371886;
- border-radius:0px;
- background:#EEE;
- color:#371886;
- -moz-transition: all .2s ease-in;
- -o-transition: all .2s ease-in;
- -webkit-transition: all .2s ease-in;
- width:19.5%;
- height:75px;
- font-size:1.4em;
- font-family:"Arial Narrow", sans-serif;
- margin-bottom:10px;
- }
- nav button:hover {
- color:#EEE;
- background:#371886;
- }
- #btmrow {
- border:2px solid #371886;
- border-radius:0px 0px 15px 15px;
- }
- #main {
- border:none;
- width:100%;
- }
- #main td {
- padding:10px;
- vertical-align:top;
- }
- #leftcol {
- width:19%;
- border-right:2px solid #371886;
- border-left:none;
- border-top:none;
- border-bottom:none;
- }
- #centcol {
- width:59%;
- border:none;
- }
- #righcol {
- width:19%;
- border-right:none;
- border-left:2px solid #371886;
- border-top:none;
- border-bottom:none;
- }
- </style>
- </head>
- <body>
- <div id="wrapper">
- <table id="holder">
- <tr>
- <td id="tophead">
- <header>
- <h1>Code Template 3</h1>
- </header>
- <!--
- URLs go here. Replace "#" with the link you wish for it to lead.
- i.e. "https://www.google.com/"
- To make the page open in a new tab, add the attribute ' target="_blank" '
- i.e. <a href="https://www.google.com/" target="_blank">
- -->
- <nav>
- <a href="#"><button>Page 1</button></a>
- <a href="#"><button>Page 2</button></a>
- <a href="#"><button>Page 3</button></a>
- <a href="#"><button>Page 4</button></a>
- <a href="#"><button>Page 5</button></a>
- </nav>
- </td>
- </tr>
- <tr>
- <!--
- Bottom-most box. Ideal container for main content.
- Split into three sections, leftcol, centcol, and righcol respectively.
- -->
- <td id="btmrow">
- <table id="main" border="1">
- <tr>
- <td id="leftcol">
- <p>Test Content</p>
- </td>
- <td id="centcol">
- <p>This is an example of a paragraph. It shows that when one box holds too much content, the entire page table becomes fluid with it, increasing to the necessary size. Since all paragraphs, like this one, can heavily vary in size, if it is kept up for too long, the page will eventually require scrolling. The default alignments for all three of these boxes is left, and as to be seen on the left and the right, items will be aligned to the top, to respect the nature of the rest of the page.</p>
- </td>
- <td id="righcol">
- <p>Test Content</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </div>
- </body>
- </html>
Advertisement