Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Code written by Jacob Howard
- 11/16/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 1</title>
- <style>
- /*
- Code written by Jacob Howard
- 11/16/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:#050505;
- color:#1330AE;
- font-family:"Arial Narrow", sans-serif;
- font-size:1.4em;
- }
- h1,h2 {
- text-align:center;
- }
- #wrapper {
- width:80%;
- max-width:1600px;
- min-width:720px;
- margin-left:auto;
- margin-right:auto;
- padding:15px;
- margin-top:2%;
- }
- table,td,th {
- border:2px solid white;
- border-collapse:none;
- margin-left:5px;
- margin-right:5px
- }
- #holder {
- width:100%;
- border-radius:15px;
- }
- #tophead {
- border-radius:10px 10px 0px 0px;
- }
- #leftcol {
- max-width:19%;
- min-width:19%;
- text-align:center;
- padding:10px;
- border-radius:0px 0px 0px 10px;
- }
- #centcol {
- width:59%;
- }
- #righcol {
- width:19%;
- border-radius:0px 0px 10px 0px;
- }
- .navbutton {
- border:2px solid #FFF;
- height:75px;
- width:100%;
- font-family:"Arial Narrow", sans-serif;
- color:#1330AE;
- background:#050505;
- font-size:1.4em;
- margin-top:5px;
- margin-bottom:5px;
- -moz-transition: all .2s ease-in;
- -o-transition: all .2s ease-in;
- -webkit-transition: all .2s ease-in;
- }
- .navbutton:hover {
- background:#1330AE;
- color:#050505;
- }
- </style>
- </head>
- <body>
- <div id="wrapper">
- <table id="holder" border="1">
- <tr>
- <td id="tophead" colspan="3">
- <header>
- <h1>Code Template 1</h1>
- </header>
- </td>
- </tr>
- <tr>
- <td id="leftcol">
- <!--
- 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 class="navbutton">Page 1</button></a>
- <a href="#"><button class="navbutton">Page 2</button></a>
- <a href="#"><button class="navbutton">Page 3</button></a>
- <a href="#"><button class="navbutton">Page 4</button></a>
- <a href="#"><button class="navbutton">Page 5</button></a>
- </nav>
- </td>
- <!--
- Main content of the page. Stuff here is aligned to the left by default.
- -->
- <td id="centcol">
- </td>
- <!--
- Right-hand-side box.
- -->
- <td id="righcol">
- </td>
- </tr>
- </table>
- </div>
- </body>
- </html>
Advertisement