RageQxeen

Issac Foster

Jun 18th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.67 KB | None | 0 0
  1. <html>
  2. <body>
  3. <script defer>
  4. window.onload = function() {
  5. var isCtrl = false;
  6. document.onkeyup=function(e)
  7. {
  8. if(e.which == 17)
  9. isCtrl=false;
  10. }
  11. document.onkeydown=function(e)
  12. {
  13. if(e.which == 17)
  14. isCtrl=true;
  15. if((e.which == 85) || (e.which == 67) && (isCtrl == true))
  16. {
  17. return false;
  18. }
  19. }
  20. var isNS = (navigator.appName == "Netscape") ? 1 : 0;
  21. if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
  22. function mischandler(){
  23. return false;
  24. }
  25. function mousehandler(e){
  26. var myevent = (isNS) ? e : event;
  27. var eventbutton = (isNS) ? myevent.which : myevent.button;
  28. if((eventbutton==2)||(eventbutton==3)) return false;
  29. }
  30. document.oncontextmenu = mischandler;
  31. document.onmousedown = mousehandler;
  32. document.onmouseup = mousehandler;
  33.  
  34. if (document.addEventListener) { // IE >= 9; other browsers
  35. document.addEventListener('contextmenu', function(e) {
  36. alert(" Try asking RageQxeen for her codes instead."); //here you draw your own menu
  37. e.preventDefault();
  38. }, false);
  39. } else { // IE < 9
  40. document.attachEvent('oncontextmenu', function() {
  41. alert("O sun, abide to death.");
  42. window.event.returnValue = false;
  43. });
  44. }
  45. };
  46. </script>
  47. <style type="text/css">
  48.  
  49. @import url(https://fonts.googleapis.com/css?family=Rock+Salt|Patua+One|Permanent+Marker);
  50.  
  51. html, body {
  52. background: -webkit-linear-gradient(-45deg, rgba(107,107,107,1) 36%,rgba(12,12,12,1) 75%,rgba(12,12,12,1) 75%,rgba(12,12,12,1) 90%);}
  53.  
  54. ::-webkit-scrollbar-button:vertical:{
  55. background-color: #transparent;}
  56.  
  57. ::-webkit-scrollbar-thumb:vertical {
  58. background-color:#transparent;
  59. height:150px;}
  60.  
  61. ::-webkit-scrollbar-thumb:horizontal {
  62. background-color:#transparent;
  63. height:60px;}
  64.  
  65.  
  66. ::-webkit-scrollbar {
  67. height:60px;
  68. width:5px;
  69. background-color:#transparent;}
  70.  
  71. #image {
  72. width: 600px;
  73. margin: 0px;
  74. border: none;
  75. height: 700px;
  76. background-color:transparent;
  77. position: absolute;
  78. left: 0%;
  79. bottom: 0%;
  80. background-image:url("http://i.picpar.com/u60d.png");
  81. background-repeat:no-repeat;
  82. background-position: bottom;
  83. background-size: 100%;
  84. z-index: 1;
  85. }
  86.  
  87. .name {position: absolute;
  88. font-family: 'Rock Salt';
  89. color: #transparent;
  90. font-size: 50px;
  91. bottom: 0%;
  92. left: 0%;
  93. width: 500px;
  94. border: 0px solid #000;
  95. text-align: center;
  96. text-shadow:
  97. #000 -3px 0px,
  98. #000 0px 2px,
  99. #bb0a1e 2px 0px,
  100. #bb0a1e 0px -2px;
  101. z-index: 2;
  102. }
  103.  
  104. .namebg { background: transparent;
  105. background:url('')
  106. center center repeat;
  107. font-family: 'Rock Salt';
  108. position: absolute;
  109. text-align: center;
  110. font-size: 50px;
  111. top: 0%;
  112. left: 0%;
  113. width: 500px;
  114. opacity:1;
  115. -webkit-text-fill-color: transparent;
  116. -webkit-background-clip: text;
  117. z-index:3;
  118. }
  119.  
  120. #container {
  121. width: 750px;
  122. height: 600px;
  123. margin: 0px;
  124. background-color: #9EA3B0;
  125. background-image:url("http://i.picpar.com/r50d.png");
  126. background-size:100%;
  127. background-repeat:no-repeat;
  128. background-position:center;
  129. position: absolute;
  130. left: 40%;
  131. bottom: 5%;
  132. box-shadow: 0px 5px 10px #000;
  133. z-index: 0;
  134. -webkit-animation: slidedown 5s; /* Safari 4.0 - 8.0 */
  135. animation: slidedown 5s;
  136. }
  137.  
  138. /* Safari 4.0 - 8.0 */
  139. @-webkit-keyframes slidedown {
  140. from {bottom: 100%;}
  141. to {bottom: 5%;}
  142. }
  143.  
  144. /* Standard syntax */
  145. @keyframes slidedown {
  146. from {bottom: 100%;}
  147. to {bottom: 5%;}
  148. }
  149.  
  150. #content {
  151. background-color:#d0a0a0;
  152. width: 690px;
  153. height: 550px;
  154. margin:auto;
  155. position: absolute;
  156. padding: 5px;
  157. font-family: 'Patua One', cursive;
  158. font-size: 18px;
  159. color: #000;
  160. right: 3%;
  161. top: 3%;
  162. z-index:1;
  163. border: #000000 solid 2px;
  164. }
  165.  
  166. #nav {
  167. background-color: transparent;
  168. width: 250px;
  169. height:10px;
  170. margin: auto;
  171. position: absolute;
  172. left: 80%;
  173. top: 3%;
  174. text-align: center;
  175. text-decoration: none;
  176. z-index:0;
  177. }
  178.  
  179. #nav a, #nav a:link, #nav a:visited {
  180. display:inline-block;
  181. text-decoration: none;
  182. text-align: center;
  183. background: #000;
  184. color: transparent;
  185. box-shadow: 0px 0px 5px #470d0d;
  186. padding: 1px;
  187. height: 20px;
  188. width: 20px;
  189. border: 2px solid #bb0a1e;
  190. -moz-transform: rotate(45deg);
  191. -o-transform: rotate(45deg);
  192. -webkit-transform: rotate(45deg);
  193. -ms-transform: rotate(45deg);
  194. }
  195.  
  196. #nav a:active, #nav a:hover {
  197. display:inline-block;
  198. height: 20px;
  199. width: 20px;
  200. text-decoration:none;
  201. background: #470d0d;
  202. box-shadow: 0px 0px 5px #000;
  203. color: transparent;
  204. margin: 0px;
  205. -moz-transform: rotate(45deg);
  206. -o-transform: rotate(45deg);
  207. -webkit-transform: rotate(45deg);
  208. -ms-transform: rotate(45deg);
  209. }
  210.  
  211. /*Code by Alikade, please keep this credit where it is, it will not interfere with the rest of the code.*/
  212.  
  213. #editthis{ position:fixed;height: 27px; width: 30px; bottom: 0%; right: 0%; margin: auto; z-index:99;}
  214.  
  215. #music1{ position:fixed; padding:2px; border-radius: 50%; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  216.  
  217. #music1:hover #music2{ opacity: 0; margin-top:-20px; z-index:-1;}
  218.  
  219. #music1:hover #music3{ opacity: .5; margin-top:-5px; z-index:99;}
  220.  
  221. #music1:hover #musiclist{ opacity: .5;}
  222.  
  223. #music2{ opacity: .5; background-color:#000000; padding:6px; border-radius: 50%; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  224.  
  225. #music3{ opacity: 0; position:fixed; background-color:#000000; background-image: url('https://www.pngkey.com/png/full/11-113290_playbutton-video-player-button-png.png'); background-repeat: no-repeat; background-size: 25px; border:1px dotted #b3b3e5; border-radius: 50%; width:25px; height:25px; z-index:99 margin-left:0px; overflow:hidden; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;}
  226.  
  227. i{color: #d30000;}
  228. b{color: #820000;}
  229. a{color: #792d2d; text-decoration: none;}
  230. h1{border-bottom: 1px solid #000; text-align: center; font-size: 25px; font-family: 'Permanent Marker', cursive;}
  231. h2{border-bottom: 1px solid #000; text-align: left; font-size: 20px; font-family: 'Permanent Marker', cursive;}
  232. h3{border-bottom: 1px solid #000; text-align: right; font-size: 20px; font-family: 'Permanent Marker', cursive;}
  233. </style>
  234. <div class="name">Issac Foster</div>
  235.  
  236. <div id="image"></div>
  237.  
  238. <div id="editthis"><div id="music1"><div id="music2">
  239. <img src="http://38.media.tumblr.com/tumblr_m7w2py1dEP1r6o8v2.gif" style="opacity: 0.8;"></div>
  240. <div id="music3"><Div style="margin-top:4px;">
  241. <audio controls style="opacity: 0;"><source src="http://k007.kiwi6.com/hotlink/ajdsuy4igx/NEFFEX_-_Crown_Copyright_Free_.mp3"></audio>
  242. </div></div></div></div>
  243.  
  244. <div id="nav">
  245. <a href="#one"></a>
  246. <a href="#two"></a>
  247. <a href="#three"></a>
  248. <a href="#four"></a>
  249. </div>
  250.  
  251. <div id="container">
  252. <div id="content">
  253. <div style="width: 690px; height: 550px; overflow-y: hidden;">
  254.  
  255. <a name="one"></a>
  256. <div style="width: 690px; height: 550px; overflow: auto;" align="center">
  257. <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
  258. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"></span><br>
  259. <span style="float:left;"><b>Gender</b></span><span style="float:right;"></span><br>
  260. <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br>
  261. <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
  262. <span style="float:left;"><b>Weight</b></span><span style="float:right;"></span><br><br>
  263. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
  264. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br>
  265. <span style="float:left;"><b>Race</b></span><span style="float:right;"></span><br>
  266. <span style="float:left;"><b>Mentality</b></span><span style="float:right;"></span><br><br>
  267. <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br>
  268. <span style="float:left;"><b>Build</b></span><span style="float:right;"></span><br>
  269. </div>
  270.  
  271. <a name="two"></a>
  272. <div style="width: 650px; height: 550px; overflow: auto;" align="center">
  273. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  274. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  275. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  276. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  277. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  278. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  279. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  280. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  281. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  282. <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br><br>
  283. </div>
  284.  
  285. <a name="three"></a>
  286. <div style="width: 690px; height: 550px; overflow: auto;" align="center">
  287. <h1>History Title Here</h1>
  288. </div>
  289.  
  290. <a name="four"></a>
  291. <div style="width: 650px; height: 550px; overflow: auto;" align="center">
  292. <h1>Out of Character</h1>
  293. <b>00</b>. Code made for Issac Foster by <a target="_blank" href="https://alliealgiere.neocities.org">RageQxeen</a>. click the name for more info!<br><br>
  294. <b>01</b>. <br><br>
  295. <b>02</b>. <br><br>
  296. <b>03</b>. <br><br>
  297. <b>04</b>. <br><br>
  298. <b>05</b>. <br><br>
  299.  
  300. </div>
  301. </div>
  302. </div>
  303. </div>
  304. </body>
  305. </html>
Advertisement
Add Comment
Please, Sign In to add comment