Advertisement
jewist

custom link page

Nov 27th, 2012
1,813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html lang="en">
  4. <head>
  5. <link href='http://fonts.googleapis.com/css?family=Expletus+Sans:400,700' rel='stylesheet' type='text/css'>
  6. <link rel="shortcut icon" href="{Favicon}" />
  7.  
  8. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  9. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  10.  
  11.  
  12. <title>my links</title>
  13. <style type="text/css">
  14.  
  15. body {
  16. /* for IE; otherwise, BG isn't fully stretched */
  17. margin: 0px;
  18. background-color:{color:background};
  19. background-attachment: fixed;
  20. background-image:url('BACKGROUND IMAGE URL GOES BETWEEN THE QUOTES');
  21. -webkit-background-size: cover;
  22. -moz-background-size: cover;
  23. -o-background-size: cover;
  24. background-size: cover;{/block:ifbackgroundimage}}
  25. }
  26.  
  27.  
  28.  
  29. #container {
  30. position:relative;
  31. margin:auto;
  32. width:800px;
  33. height:100%;
  34. top:10px;
  35. text-align: center;
  36. visibility: visible;
  37. z-index: 100;
  38. }
  39.  
  40. div.links{
  41. position:fixed;
  42. margin-top:10%;
  43. width:100%;
  44. font-size:20pt;
  45. text-transform:lowercase;
  46. color:#ffffff;
  47. font-family:courier new;
  48. text-align:center;
  49. }
  50. a, a:visited{
  51. color:#ffffff
  52. }
  53. a:hover{
  54. color:#000000;
  55. }
  56.  
  57. </style>
  58.  
  59. <SCRIPT TYPE="text/javascript">
  60. <!--
  61. function dropdown(mySel)
  62. {
  63. var myWin, myVal;
  64. myVal = mySel.options[mySel.selectedIndex].value;
  65. if(myVal)
  66. {
  67. if(mySel.form.target)myWin = parent[mySel.form.target];
  68. else myWin = window;
  69. if (! myWin) return true;
  70. myWin.location = myVal;
  71. }
  72. return false;
  73. }
  74. //-->
  75. </SCRIPT>
  76.  
  77. </head>
  78. <body>
  79. <center>
  80. <div id="container">
  81.  
  82. <div class="links">
  83. <center><b>
  84.  
  85. <a href="PAGE URL">TITLE</a>
  86. <br>
  87. /* copy the code above and paste it underneath the first one to add more links */
  88.  
  89.  
  90.  
  91.  
  92.  
  93. </div>
  94. </body>
  95. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement