Advertisement
dylanohelps

Navigation #2

Jun 17th, 2013
2,192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!----------------------
  4.  
  5. NAVIGATION #2 by JAKEHELPS
  6. #1: Do not redistribute & claim as your own.
  7. #2: Do not remove the credit.
  8.  
  9. ---------------------------->
  10.  
  11. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  12. <head>
  13. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  14.  
  15. <title>{Title}</title>
  16. <link rel="shortcut icon" href="{Favicon}" />
  17.  
  18. <link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
  19.  
  20. <link href='http://fonts.googleapis.com/css?family=Fjalla+One' rel='stylesheet' type='text/css'>
  21.  
  22. </head>
  23. <style type="text/css">
  24. body {
  25. padding: 0;
  26. margin: 0;
  27. list-style: none;
  28. background-color: #FFFFFF;
  29. background-attachment: fixed;
  30. background-image:url('http://i93.photobucket.com/albums/l78/andrew_jason12/black_lozenge.png');
  31. margin-bottom: 50px;
  32. }
  33.  
  34. a {
  35. text-decoration: none;
  36. color: black;
  37. }
  38.  
  39. #title {
  40. width: 421px;
  41. height: auto;
  42. border-bottom: 2px solid #FFFFFF;
  43. padding: 3px;
  44. font-family: fjalla one;
  45. font-size: 20px;
  46. letter-spacing: 10px;
  47. text-align: center;
  48. color: #FFFFFF;
  49. margin-left: 460px;
  50. margin-top: 250px;
  51. text-transform: uppercase;
  52. }
  53.  
  54. #links {
  55. width: 421px;
  56. height: auto;
  57. padding: 3px;
  58. margin-top: 5px;
  59. margin-left: 460px;
  60. text-align: center;
  61. }
  62.  
  63. #links a {
  64. width: 20px;
  65. height: 16px;
  66. padding: 22px 29px;
  67. float: left;
  68. font-family: fjalla one;
  69. font-size: 10px;
  70. margin: 3px;
  71. color: #202020;
  72. text-align: center;
  73. background-color: #FFFFFF;
  74. -webkit-transition: all 0.2s ease-in-out;
  75. -moz-transition: all 0.2s ease-in-out;
  76. -o-transition: all 0.2s ease-in-out;
  77. -ms-transition: all 0.2s ease-in-out;
  78. transition: all 0.2s ease-in-out;
  79. }
  80.  
  81. #links a:hover {
  82. background-color: #202020;
  83. color: #FFFFFF;
  84. }
  85.  
  86. #credit a {
  87. margin-top: 290px;
  88. margin-right: 20px;
  89. float: right;
  90. }
  91.  
  92. #credit a {
  93. font-family: fjalla one;
  94. font-size: 12px;
  95. color: #FFFFFF;
  96. background-color: #303030;
  97. padding: 10px 15px;
  98. -webkit-transition: all 0.2s ease-in-out;
  99. -moz-transition: all 0.2s ease-in-out;
  100. -o-transition: all 0.2s ease-in-out;
  101. -ms-transition: all 0.2s ease-in-out;
  102. transition: all 0.2s ease-in-out;
  103. }
  104.  
  105. #credit a:hover {
  106. background-color: #FFFFFF;
  107. color: #202020;
  108. }
  109.  
  110. </style>
  111. <body>
  112. <div id="title">Navigation</div>
  113. <div id="links">
  114. <a href="#" title="home">1</a>
  115. <a href="#" title="message">2</a>
  116. <a href="#" title="archive">3</a>
  117. <a href="#" title="link 1">4</a>
  118. <a href="#" title="link 2">5</a>
  119. <a href="#" title="link 3">6</a>
  120. <a href="#" title="link 3">7</a>
  121. <a href="#" title="link 3">8</a>
  122. <a href="#" title="link 3">9</a>
  123. <a href="#" title="link 3">10</a>
  124. </div>
  125. <div id="credit"><a href="http://jakehelps.tumblr.com">&copy;</a></div>
  126.  
  127.  
  128. </body>
  129. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement