HTML

HTML Template 1

Nov 17th, 2016
187
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.61 KB | None | 0 0
  1. <!--
  2.  
  3. Code written by Jacob Howard
  4. 11/16/16
  5. If you wish to use this template, you do not have to ask for permission.
  6. If you wish to use this template for commercial purposes, please leave this comment.
  7.  
  8. -->
  9. <!DOCTYPE html>
  10. <html>
  11. <head>
  12. <meta charset="UTF-8">
  13. <title>Code Template 1</title>
  14. <style>
  15. /*
  16.  
  17. Code written by Jacob Howard
  18. 11/16/16
  19. If you wish to use this template, you do not have to ask for permission.
  20. If you wish to use this template for commercial purposes, please leave this comment.
  21.  
  22. */
  23. body {
  24.             background:#050505;
  25.             color:#1330AE;
  26.             font-family:"Arial Narrow", sans-serif;
  27.             font-size:1.4em;
  28. }
  29. h1,h2 {
  30.             text-align:center;
  31. }
  32. #wrapper {
  33.             width:80%;
  34.             max-width:1600px;
  35.             min-width:720px;
  36.             margin-left:auto;
  37.             margin-right:auto;
  38.             padding:15px;
  39.             margin-top:2%;
  40. }
  41. table,td,th {
  42.             border:2px solid white;
  43.             border-collapse:none;
  44.             margin-left:5px;
  45.             margin-right:5px
  46. }
  47. #holder {
  48.             width:100%;
  49.             border-radius:15px;
  50. }
  51. #tophead {
  52.             border-radius:10px 10px 0px 0px;
  53. }
  54. #leftcol {
  55.             max-width:19%;
  56.             min-width:19%;
  57.             text-align:center;
  58.             padding:10px;
  59.             border-radius:0px 0px 0px 10px;
  60. }
  61. #centcol {
  62.             width:59%;
  63. }
  64. #righcol {
  65.             width:19%;
  66.             border-radius:0px 0px 10px 0px;
  67. }
  68. .navbutton {
  69.             border:2px solid #FFF;
  70.             height:75px;
  71.             width:100%;
  72.             font-family:"Arial Narrow", sans-serif;
  73.             color:#1330AE;
  74.             background:#050505;
  75.             font-size:1.4em;
  76.             margin-top:5px;
  77.             margin-bottom:5px;
  78.             -moz-transition: all .2s ease-in;
  79.             -o-transition: all .2s ease-in;
  80.             -webkit-transition: all .2s ease-in;
  81. }
  82. .navbutton:hover {
  83.             background:#1330AE;
  84.             color:#050505;
  85. }
  86. </style>
  87. </head>
  88. <body>
  89. <div id="wrapper">
  90. <table id="holder" border="1">
  91. <tr>
  92. <td id="tophead" colspan="3">
  93. <header>
  94. <h1>Code Template 1</h1>
  95. </header>
  96. </td>
  97. </tr>
  98. <tr>
  99. <td id="leftcol">
  100. <!--
  101.  
  102. URLs go here. Replace "#" with the link you wish for it to lead.
  103. i.e. "https://www.google.com/"
  104. To make the page open in a new tab, add the attribute ' target="_blank" '
  105. i.e. <a href="https://www.google.com/" target="_blank">
  106.  
  107. -->
  108. <nav>
  109. <a href="#"><button class="navbutton">Page 1</button></a>
  110. <a href="#"><button class="navbutton">Page 2</button></a>
  111. <a href="#"><button class="navbutton">Page 3</button></a>
  112. <a href="#"><button class="navbutton">Page 4</button></a>
  113. <a href="#"><button class="navbutton">Page 5</button></a>
  114. </nav>
  115. </td>
  116. <!--
  117.  
  118. Main content of the page. Stuff here is aligned to the left by default.
  119.  
  120. -->
  121. <td id="centcol">
  122.  
  123. </td>
  124. <!--
  125.  
  126. Right-hand-side box.
  127.  
  128. -->
  129. <td id="righcol">
  130.  
  131. </td>
  132. </tr>
  133. </table>
  134. </div>
  135. </body>
  136. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment