Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Code written by Jacob Howard
- 11/17/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 2</title>
- <style>
- /*
- Code written by Jacob Howard
- 11/17/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:#FFF;
- color:#2520B6;
- font-family:"Arial Narrow", sans-serif;
- font-size:1.4em;
- }
- #wrapper {
- width:80%;
- max-width:1600px;
- min-width:720px;
- margin-left:auto;
- margin-right:auto;
- padding:15px;
- margin-top:2%;
- }
- #holder {
- border:none;
- width:100%;
- }
- #leftcol {
- border:none;
- width:19%;
- height:100%;
- }
- #righcol {
- border:2px solid #2520B6;
- border-radius:15px;
- width:79%;
- }
- #tophead {
- text-align:center;
- border:none;
- }
- nav button {
- border:2px solid #2520B6;
- height:75px;
- width:100%;
- font-family:"Arial Narrow", sans-serif;
- color:#2520B6;
- background:#FFF;
- 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;
- }
- nav button:hover {
- background:#2520B6;
- color:#FFF;
- }
- #topbtn {
- border-radius:15px 15px 0px 0px;
- }
- #btmbtn {
- border-radius:0px 0px 15px 15px;
- }
- </style>
- </head>
- <body>
- <div id="wrapper">
- <table id="holder" border="1">
- <tr>
- <td id="tophead" colspan="2">
- <header>
- <h1>Code Template 2</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 id="topbtn">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 id="btmbtn">Page 5</button></a>
- </nav>
- </td>
- <!--
- Box on the rightmost-side of the page. Ideal container for main content.
- -->
- <td id="righcol">
- </td>
- </table>
- </div>
- </body>
- </html>
Advertisement