Advertisement
Guest User

RIP

a guest
Sep 1st, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.01 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10. <script>
  11. <!--
  12. document.write(unescape("<script>
  13. <!--
  14. document.write(unescape("
  15.  
  16.  
  17.  
  18. <html>
  19. <SCRIPT language=JavaScript>
  20. <!-- Begin
  21. day = new Date();
  22. miVisit = day.getTime();
  23. function clock() {
  24. dayTwo = new Date();
  25. hrNow = dayTwo.getHours();
  26. mnNow = dayTwo.getMinutes();
  27. scNow = dayTwo.getSeconds();
  28. miNow = dayTwo.getTime();
  29. if (hrNow == 0) {
  30. hour = 12;
  31. ap = " AM";
  32. } else if(hrNow <= 11) {
  33. ap = " AM";
  34. hour = hrNow;
  35. } else if(hrNow == 12) {
  36. ap = " PM";
  37. hour = 12;
  38. } else if (hrNow >= 13) {
  39. hour = (hrNow - 12);
  40. ap = " PM";
  41. }
  42. if (hrNow >= 13) {
  43. hour = hrNow - 12;
  44. }
  45. if (mnNow <= 9) {
  46. min = "0" + mnNow;
  47. }
  48. else (min = mnNow)
  49. if (scNow <= 9) {
  50. secs = "0" + scNow;
  51. } else {
  52. secs = scNow;
  53. }
  54. time = hour + ":" + min + ":" + secs + ap;
  55. document.form.button.value = time;
  56. self.status = time;
  57. setTimeout('clock()', 1000);
  58. }
  59. function timeInfo() {
  60. milliSince = miNow;
  61. milliNow = miNow - miVisit;
  62. secsVisit = Math.round(milliNow / 1000);
  63. minsVisit = Math.round((milliNow / 1000) / 60);
  64. alert("There have been " + milliSince + " milliseconds since midnight, January 1, 1970. "
  65. + "You have spent " + milliNow + " of those milliseconds on this page. "
  66. + ".... About " + minsVisit + " minutes, and "
  67. + secsVisit + " seconds.");
  68. }
  69. document.write("<center><form name=\"form\">"
  70. + "<input type=button value=\"Click for info!\""
  71. + " name=button onClick=\"timeInfo()\"></form></center>");
  72. onError = null;
  73. clock();
  74. // End -->
  75. <script language="JavaScript">
  76. <!-- Mouse Attack by Kurt Grigg - http://www.btinternet.com/~kurt.grigg/javascript
  77.  
  78. var num=10;//Number of dots!
  79. var vel=20;//Speed!
  80. var col=new Array('#0080ff','#ffffff','#0000ff','#44ccff');//Dot colours, min 2!
  81. var stopafter=60; //Stop and clear after x secondS!
  82. //Nothing needs altering past here....................
  83. var MAy=0;
  84. var MAx=0;
  85. var py=0;
  86. var px=0;
  87. var angle=0;
  88. var distance=0;
  89. var rep;
  90. var ry=0;
  91. var rx=0;
  92. var tmr=null;
  93. var n4=(document.layers);
  94. var n6=(document.getElementById&&!document.all);
  95. var ie=(document.all);
  96. var o6=(navigator.appName.indexOf("Opera") != -1)?true:false;
  97. var _d=(n4||ie)?'document.':'document.getElementById(" ';
  98. var _a=(n4||n6)?'':'all.';
  99. var _r=(n6)?'")':'';
  100. var _s=(n4)?'':'.style';
  101. var v=(n4)?"show":"visible";
  102. var put=false;
  103. stopafter*=1000;
  104. if (n4||n6){
  105. window.captureEvents(Event.MOUSEMOVE);
  106. function mouse1(e){
  107. if (put) return false;
  108. MAy = e.pageY-window.pageYOffset;
  109. MAx = e.pageX;
  110. }
  111. if (n4) window.onMouseMove=mouse1;
  112. else document.onmousemove=mouse1;
  113. }
  114. if (ie||o6){
  115. function mouse2(){
  116. if (put) return false;
  117. MAy = (ie)?event.clientY:event.clientY-window.pageYOffset;
  118. MAx = event.clientX;
  119. }
  120. document.onmousemove=mouse2;
  121. }
  122. if (n4){
  123. for (inc=0; inc < num; inc++)
  124. document.write('<layer name=dots'+inc+' top=0 left=0 width='+inc/3+' height='+inc/3+' bgcolor=#ffffff></layer>');
  125. }
  126. else{
  127. if (ie&&!o6){
  128. document.write("<div id='outer' style='position:absolute;top:0px;left:0px'>");
  129. document.write("<div style='position:relative'>");
  130. }
  131. for (inc=0; inc < num; inc++)
  132. document.write('<div id="dots'+inc+'" style="position:absolute;top:0px;left:0px;width:'+ inc/3+';height:'+inc/3+';background:#ffffff;font-size:1">.</div>');
  133. if (ie&&!o6) document.write("</div></div>");
  134. }
  135. function pos(){
  136. h=(ie)?document.body.clientHeight:window.innerHeig ht-20;
  137. w=(ie)?document.body.clientWidth:window.innerWidth-20;
  138. ry=Math.round(Math.random()*h);
  139. rx=Math.round(Math.random()*w);
  140. rep=Math.round(Math.random()*3);
  141. if (rep == 3)ry=0;
  142. if (rep == 2)ry=h;
  143. if (rep == 1)rx=0;
  144. if (rep == 0)rx=w;
  145. py=ry;
  146. px=rx;
  147. }
  148. pos();
  149. function followleader(){
  150. sy=(!ie)?window.pageYOffset:0;
  151. sx=(!ie)?window.pageXOffset:0;
  152. if (ie) outer.style.top=document.body.scrollTop;
  153. for (inc=0; inc < num; inc++){
  154. randomcol=col[Math.floor(Math.random()*col.length)];
  155. temp1=eval(_d+_a+"dots"+inc+_r+_s);
  156. temp1.visibility=v;
  157. if (inc < num-1){
  158. temp2=eval(_d+_a+"dots"+(inc+1)+_r+_s);
  159. temp1.top=temp2.top;
  160. temp1.left=temp2.left
  161. }
  162. else{
  163. temp1.top=py+sy;
  164. temp1.left=px;
  165. }
  166. if (n4)temp1.bgColor=randomcol;
  167. else temp1.background=randomcol;
  168. }
  169. }
  170. function bomb(){
  171. ay=MAy-py;
  172. ax=MAx-px;
  173. angle=Math.round(Math.atan2(ay,ax)*180/Math.PI);
  174. if (angle < 0) angle += 360;
  175. MAdy=py-MAy;
  176. MAdx=px-MAx;
  177. distance=Math.floor(Math.sqrt(MAdx*MAdx+MAdy*MAdy) );
  178. go_y = Math.round(vel*Math.sin(angle*Math.PI/180));
  179. go_x = Math.round(vel*Math.cos(angle*Math.PI/180));
  180. py+=go_y;
  181. px+=go_x;
  182. if (distance < vel) pos();
  183. followleader();
  184. tmr=setTimeout("bomb()",20);
  185. }
  186. bomb();
  187. function dsbl(){
  188. v=(n4)?"hide":"hidden";
  189. put=true;
  190. MAx=0;
  191. MAy=0;
  192. setTimeout('clearTimeout(tmr)',stopafter+100);
  193. }
  194. setTimeout('dsbl()',stopafter);
  195. //-->
  196. </script>
  197. <title>Ra đảo vui vẻ</title>
  198. <head> <!-- chống view code -start-share123.vn-->
  199. <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js'/> <script> checkCtrl=false $(&#39;*&#39;).keydown(function(e){ if(e.keyCode==&#39;17&#39;){ checkCtrl=false } }).keyup(function(ev){ if(ev.keyCode==&#39;17&#39;){ checkCtrl=false } }).keydown(function(event){ if(checkCtrl){ if(event.keyCode==&#39;85&#39;){ return false; } } }) </script>
  200. <!-- chống view code -end-->
  201.  
  202.  
  203. <style type="text/css">body{cursor: url("http://ani.cursors-4u.net/toons/too-12/too1138.cur"), auto;}body a:hover{cursor: url("http://ani.cursors-4u.net/toons/too-12/too1138.cur"), auto;}</style>
  204.  
  205. <meta name="robots" content="NOINDEX, NOFOLLOW">
  206.  
  207.  
  208. <meta name="description" content="Lkin">
  209.  
  210.  
  211. <meta name="keyword" content="HAPPY BIRHTDAY">
  212.  
  213. <link rel="shortcut icon" href="http://i.mynicespace.com/1/152.gif" />
  214. <div class='widget-content'>
  215. <script type='text/javascript'>
  216. var DADrightclicktheme = 'Dark';
  217. var DADrightclickimage = 'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS1B8PV2u-0rv7af2_XvbztYQACEEiBAaepdWiTqxV_wasOsNpu';
  218. </script>
  219. <script type='text/javascript' src="http://yondarkness.googlecode.com/files/AntiCopas.js"> </script>
  220.  
  221. </div>
  222. <div class='clear'></div></div></div>
  223.  
  224. <link href='http://fonts.googleapis.com/css?family=Averia+Sans+Libre' rel='stylesheet' type='text/css'>
  225. <link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
  226. <style type="text/css">
  227.  
  228.  
  229. body {background:#000000 url(http://images5.fanpop.com/image/photos/28200000/death-angels-dark-anime-angels-28213390-1280-1024.jpg) repeat scroll center 0;
  230. }
  231. a { text-decoration:none; }
  232. a:link { color: #00FF00}
  233. a:visited { color: #00FF00}
  234. a:hover { color: #00FF00}
  235. a:active { color: #00FF00}
  236.  
  237. .style2 {Helvetica, sans-serif; font-weight: bold; font-size: 15px; }
  238. .style3 {Helvetica, sans-serif; font-weight: bold; }
  239. .style4 {color: #FFFF00}
  240. .style5 {color: #FF0000}
  241. .style6 {color: #00FF00}
  242. img{border:4px double green;
  243. box-shadow:0px 9px 15px white;
  244. border-radius:10px;}
  245. .thanks{border:4px double green;
  246. box-shadow:0px 2px 20px white;
  247. border-radius:10px;
  248. padding:9px;}
  249. .a{text-shadow:0px 1px 10px lime;}
  250. </style>
  251. <script type="text/javascript">
  252.  
  253.  
  254. TypingText = function(element, interval, cursor, finishedCallback) {
  255.  
  256.  
  257. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  258.  
  259.  
  260. this.running = true; // Never run.
  261.  
  262.  
  263. return;
  264.  
  265.  
  266. }
  267.  
  268.  
  269. this.element = element;
  270.  
  271.  
  272. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  273.  
  274.  
  275. this.interval = (typeof interval == "undefined" ? 20 : interval);
  276.  
  277.  
  278. this.origText = this.element.innerHTML;
  279.  
  280.  
  281. this.unparsedOrigText = this.origText;
  282.  
  283.  
  284. this.cursor = (cursor ? cursor : "");
  285.  
  286.  
  287. this.currentText = "";
  288.  
  289.  
  290. this.currentChar = 0;
  291.  
  292.  
  293. this.element.typingText = this;
  294.  
  295.  
  296. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  297.  
  298.  
  299. TypingText.all.push(this);
  300.  
  301.  
  302. this.running = false;
  303.  
  304.  
  305. this.inTag = false;
  306.  
  307.  
  308. this.tagBuffer = "";
  309.  
  310.  
  311. this.inHTMLEntity = false;
  312.  
  313.  
  314. this.HTMLEntityBuffer = "";
  315.  
  316.  
  317. }
  318.  
  319.  
  320. TypingText.all = new Array();
  321.  
  322.  
  323. TypingText.currentIndex = 0;
  324.  
  325.  
  326. TypingText.runAll = function() {
  327.  
  328.  
  329. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  330.  
  331.  
  332. }
  333.  
  334.  
  335. TypingText.prototype.run = function() {
  336.  
  337.  
  338. if(this.running) return;
  339.  
  340.  
  341. if(typeof this.origText == "undefined") {
  342.  
  343.  
  344. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  345.  
  346.  
  347. return;
  348.  
  349.  
  350. }
  351.  
  352.  
  353. if(this.currentText == "") this.element.innerHTML = "";
  354.  
  355.  
  356. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  357.  
  358.  
  359. if(this.currentChar < this.origText.length) {
  360.  
  361.  
  362. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  363.  
  364.  
  365. this.tagBuffer = "<";
  366.  
  367.  
  368. this.inTag = true;
  369.  
  370.  
  371. this.currentChar++;
  372.  
  373.  
  374. this.run();
  375.  
  376.  
  377. return;
  378.  
  379.  
  380. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  381.  
  382.  
  383. this.tagBuffer += ">";
  384.  
  385.  
  386. this.inTag = false;
  387.  
  388.  
  389. this.currentText += this.tagBuffer;
  390.  
  391.  
  392. this.currentChar++;
  393.  
  394.  
  395. this.run();
  396.  
  397.  
  398. return;
  399.  
  400.  
  401. } else if(this.inTag) {
  402.  
  403.  
  404. this.tagBuffer += this.origText.charAt(this.currentChar);
  405.  
  406.  
  407. this.currentChar++;
  408.  
  409.  
  410. this.run();
  411.  
  412.  
  413. return;
  414.  
  415.  
  416. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  417.  
  418.  
  419. this.HTMLEntityBuffer = "&";
  420.  
  421.  
  422. this.inHTMLEntity = true;
  423.  
  424.  
  425. this.currentChar++;
  426.  
  427.  
  428. this.run();
  429.  
  430.  
  431. return;
  432.  
  433.  
  434. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  435.  
  436.  
  437. this.HTMLEntityBuffer += ";";
  438.  
  439.  
  440. this.inHTMLEntity = false;
  441.  
  442.  
  443. this.currentText += this.HTMLEntityBuffer;
  444.  
  445.  
  446. this.currentChar++;
  447.  
  448.  
  449. this.run();
  450.  
  451.  
  452. return;
  453.  
  454.  
  455. } else if(this.inHTMLEntity) {
  456.  
  457.  
  458. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  459.  
  460.  
  461. this.currentChar++;
  462.  
  463.  
  464. this.run();
  465.  
  466.  
  467. return;
  468.  
  469.  
  470. } else {
  471.  
  472.  
  473. this.currentText += this.origText.charAt(this.currentChar);
  474.  
  475.  
  476. }
  477.  
  478.  
  479. this.element.innerHTML = this.currentText;
  480.  
  481.  
  482. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  483.  
  484.  
  485. this.currentChar++;
  486.  
  487.  
  488. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  489.  
  490.  
  491. } else {
  492.  
  493.  
  494. this.currentText = "";
  495.  
  496.  
  497. this.currentChar = 0;
  498.  
  499.  
  500. this.running = false;
  501.  
  502.  
  503. this.finishedCallback();
  504.  
  505.  
  506. }
  507.  
  508.  
  509. }
  510.  
  511.  
  512. </script>
  513. </head>
  514. <script src='http://misbahudin-dcaesga.googlecode.com/files/efek-salju.js'/>
  515. <script src='http://misbahudin.googlecode.com/files/daun%20gugur.js'/>
  516. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  517. <script type='text/javascript'>
  518.  
  519.  
  520. //<![CDATA[
  521.  
  522.  
  523. var message="Cảm Æ¡n bạn Ä‘Ă£ ghĂ© thăm site của mình - Thế Anh";
  524.  
  525.  
  526. function clickIE() {if (document.all) {(message);return false;}}
  527.  
  528.  
  529. function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {
  530.  
  531.  
  532. if (e.which==2||e.which==3) {(message);return false;}}}
  533.  
  534.  
  535. if (document.layers)
  536.  
  537.  
  538. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  539.  
  540.  
  541. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  542.  
  543.  
  544. document.oncontextmenu=new Function("return false")
  545.  
  546.  
  547. //]]>
  548.  
  549.  
  550. </script>
  551. <script type="text/javascript">
  552. <script language="javascript" src="http://zianxfly.250free.com/js/saljucursorfuchsia.js
  553. "></script>
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561. </SCRIPT>
  562. <h1>
  563. <center>
  564. <script>
  565.  
  566.  
  567. farbbibliothek = new Array();
  568.  
  569.  
  570. farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100");
  571.  
  572.  
  573. farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  574.  
  575.  
  576. farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00");
  577.  
  578.  
  579. farbbibliothek[3] = new Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040");
  580.  
  581.  
  582. farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  583.  
  584.  
  585. farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  586.  
  587.  
  588. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  589.  
  590.  
  591. farben = farbbibliothek[4];
  592.  
  593.  
  594. function farbschrift()
  595.  
  596.  
  597. {
  598.  
  599.  
  600. for(var i=0 ; i<Buchstabe.length; i++)
  601.  
  602.  
  603. {
  604.  
  605.  
  606. document.all["a"+i].style.color=farben[i];
  607.  
  608.  
  609. }
  610.  
  611.  
  612. farbverlauf();
  613.  
  614.  
  615. }
  616.  
  617.  
  618. function string2array(text)
  619.  
  620.  
  621. {
  622.  
  623.  
  624. Buchstabe = new Array();
  625.  
  626.  
  627. while(farben.length<text.length)
  628.  
  629.  
  630. {
  631.  
  632.  
  633. farben = farben.concat(farben);
  634.  
  635.  
  636. }
  637.  
  638.  
  639. k=0;
  640.  
  641.  
  642. while(k<=text.length)
  643.  
  644.  
  645. {
  646.  
  647.  
  648. Buchstabe[k] = text.charAt(k);
  649.  
  650.  
  651. k++;
  652.  
  653.  
  654. }
  655.  
  656.  
  657. }
  658.  
  659.  
  660. function divserzeugen()
  661.  
  662.  
  663. {
  664.  
  665.  
  666. for(var i=0 ; i<Buchstabe.length; i++)
  667.  
  668.  
  669. {
  670.  
  671.  
  672. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  673.  
  674.  
  675. }
  676.  
  677.  
  678. farbschrift();
  679.  
  680.  
  681. }
  682.  
  683.  
  684. var a=1;
  685.  
  686.  
  687. function farbverlauf()
  688.  
  689.  
  690. {
  691.  
  692.  
  693. for(var i=0 ; i<farben.length; i++)
  694.  
  695.  
  696. {
  697.  
  698.  
  699. farben[i-1]=farben[i];
  700.  
  701.  
  702. }
  703.  
  704.  
  705. farben[farben.length-1]=farben[-1];
  706.  
  707.  
  708.  
  709.  
  710.  
  711. setTimeout("farbschrift()",30);
  712.  
  713.  
  714. }
  715.  
  716.  
  717. //
  718.  
  719.  
  720. var farbsatz=1;
  721.  
  722.  
  723. function farbtauscher()
  724.  
  725.  
  726. {
  727.  
  728.  
  729. farben = farbbibliothek[farbsatz];
  730.  
  731.  
  732. while(farben.length<text.length)
  733.  
  734.  
  735. {
  736.  
  737.  
  738. farben = farben.concat(farben);
  739.  
  740.  
  741. }
  742.  
  743.  
  744. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  745.  
  746.  
  747. }
  748.  
  749.  
  750. setInterval("farbtauscher()",5000);
  751.  
  752.  
  753. text= "R.I.P"; //h
  754.  
  755.  
  756. string2array(text);
  757.  
  758.  
  759. divserzeugen();
  760.  
  761. //document.write(text);
  762.  
  763. </SCRIPT></center>
  764. </h1>
  765. <center></p><font face="Bleeding Cowboys" size="6" color="white" class="a">♥ ღ๖R.I.P ๖ۣۜOR BE ๖ۣۜRIPღ ♥</font><br>
  766. <body onkeydown="return false">
  767. <hr />
  768. <table border="5" width="100%" height="300" cellpadding="5" bgimage="" class="shakeimage" onMouseover="init(this);rattleimage()" onload="init(this);rattleimage()">
  769. <tr>
  770.  
  771. <td width="30%" align="center" valign="center">
  772.  
  773. <img src="http://www.miastogier.pl/mod/forum/img/avatars/wallpaper_andrew_dobell_02_1600.jpg" align="middle" border="0" width="400" height="400" class="shakeimage" onMouseover="init(this);rattleimage()" onload="init(this);rattleimage()" /><br />
  774.  
  775. </td>
  776.  
  777. <td width="70%" align="center" class="shakeimage" onMouseover="init(this);rattleimage()" onload="init(this);rattleimage()">
  778.  
  779. <FONT COLOR="Red" size="7">
  780. <span class="a"><blink>♥ Gửi tụi mày dưới địa ngục ♥</blink> <br /></span>
  781. <code>
  782. <FONT COLOR="#00BFFF" size="4">
  783. <div id="example1">
  784. </div>
  785. <p id="example2">
  786.  
  787. <font color="#00BFFF" size="6">
  788. =============Tao Là Thần Chết===============<br />
  789. <span class="a"><Font color="red" Chúng tao là những thần chết </font><br></span>
  790. <span class="a"><b>Chúng tao là những thần chết</b></font><br></span>
  791. <span class="a"><b>Và thần chết thì chỉ có 1 việc duy nhất đó là R.I.P những đứa như chúng mày</b></font><br></span>
  792. <span class="a"><font color="Red"><b>Và nếu vẫn KHÔNG BIẾT ĐIỀU </font><br></span></b>
  793. <span class="a"><font color="Black"><b>Thì mày đừng chơi Facebook nữa, tại vì chúng tao thề.</b></font><br></span>
  794. <span class="a"><font color="Black"><b> Nếu mày lập acc nào, chúng tao sẽ R.I.P acc đó</b></font><br></span> <span class="a"><b>, TẤT CẢ ! </b></font><br></span>
  795. <span class="a"><font color="Black"><b>Và acc hiện tại của mày, trong 24h kể từ khi nhận được thông điệp.</b></font><br></span>
  796. <span class="a"><font color="Black"><b> Nó sẽ 1 đi không trở lại</b></font><br></span>
  797. <span class="a"><Font color="black"<b> Thân ái, và đừng đụng tới ae tụi tao. Chào vĩnh biệt. <u></u></b><br></span>
  798. <span class="a"><font color="#00BFFF" size="6">
  799. ==============THần Chết================<br />
  800. <span class="a"><font face="Orbitron" style="background: url(&quot;http://i44.servimg.com/u/f44/15/64/85/86/bgname10.gif&quot;) repeat scroll 0% 0% transparent; color:#fff; text-shadow: 0pt 0pt 0.9em White, 0pt 2pt 0.9em Green;"><b>-------< ๖ۣۜ R.I.P OR BE R.I.P >-------</b></font>
  801.  
  802. </p>
  803.  
  804.  
  805.  
  806. <script type="text/javascript">
  807.  
  808.  
  809. //Define first typing example:
  810.  
  811.  
  812. new TypingText(document.getElementById("example1"));
  813.  
  814.  
  815. //Define second typing example (use "slashing" cursor at the end):
  816.  
  817.  
  818. new TypingText(document.getElementById("example2"), 50, function(i){
  819.  
  820.  
  821. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  822.  
  823.  
  824. ar.length]; });
  825.  
  826.  
  827. //Type out examples:
  828.  
  829.  
  830. TypingText.runAll();
  831.  
  832.  
  833. </script></div>
  834. </code></font>
  835. </td>
  836. </tr>
  837. </table>
  838. <table width="100%" border="5" bgcolor="green">
  839. <tr><td align="center">
  840. </td></tr>
  841. </table>
  842. <br />
  843. <br />
  844. <center>
  845. <a href="https://www.facebook.com/chippi613" role="button" target="_blank">
  846. <span style="font-family: "Comic Sans MS";text-decoration:none;text-underline:none">
  847. <img id="_x0000_i1032" border="0" src="http://i770.photobucket.com/albums/xx349/h6009/facebook-icon-small_zpsd839c8ac.png" style="position:fixed;top:250px;right:10px;" onclick="info()">
  848. </span>
  849. </a>
  850. <p class=MsoNormal align=center style='text-align:center'><script type="text/javascript">
  851. //Define first typing example:
  852. new TypingText(document.getElementById("example1"));
  853. //Define second typing example (use "slashing" cursor at the end):
  854. new TypingText(document.getElementById("example2"), 50, function(i){
  855. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  856. ar.length]; });
  857. //Type out examples:
  858. TypingText.runAll();
  859. </div>
  860. <center>
  861. <br><FONT COLOR="white"><FONT SIZE=5> R.I.P :'( team <a href='https://www.facebook.com/jin.paket' title='ღ๖ۣۜR.I.P ๖ۣۜOR BE ๖ۣۜR.I.P
  862. </a></FONT> </center>
  863.  
  864. <script type="text/javascript" src="//www.blogger.com/static/v1/common/js/1851061575-csitail.js"></script>
  865. <object width="1" height="1"> <param name="movie" value="http://mp3.zing.vn/bai-hat/Em-Cua-Ngay-Hom-Qua-Son-Tung-M-TP/ZW69BZOF.html" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="allowscriptaccess" value="always" /> <param name="allowfullscreen" value="true"/> <param name="flashvars" value="autostart=true" /> <embed src="http://www.nhaccuatui.com/m/H1xcQUhfti" flashvars="target=blank&autostart=true" allowscriptaccess="always" allowfullscreen="true" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="1" height="1"></embed></object>
  866. </html>"));
  867. //-->
  868. </script>"));
  869. //-->
  870. </script><!-- www.serversfree.com Analytics Code -->
  871. <script src="http://www.serversfree.com"></script><noscript><a title="Free hosting servers" href="http://www.serversfree.com">Free servers</a><a title="Free websites hosting server" href="http://www.serversfree.com">Free websites hosting server</a><a title="Free hosting server features" href="http://www.serversfree.com/hieu.tranvan.5268">Free server features</a><a title="Free hosting" href="http://www.bugs3.com">Free hosting</a><a title="Page rank" href="http://www.1pagerank.com">Page rank</a></noscript>
  872. <script type="text/javascript">
  873.  
  874. var _gaq = _gaq || [];
  875. _gaq.push(['_setAccount', 'UA-24425628-3']);
  876. _gaq.push(['_setDomainName', window.location.host]);
  877. _gaq.push(['_setAllowLinker', true]);
  878. _gaq.push(['_trackPageview']);
  879.  
  880. (function() {
  881. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  882. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  883. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  884. })();
  885.  
  886. </script>
  887. <script type="text/javascript" src="http://www.bugs3.com/ganalytics.js"></script>
  888. <!-- End Of Analytics Code -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement