Advertisement
codeno1

web ngịc

Jun 7th, 2014
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.58 KB | None | 0 0
  1.  
  2. <html>
  3. <SCRIPT language=JavaScript>
  4. <!-- Begin
  5. day = new Date();
  6. miVisit = day.getTime();
  7. function clock() {
  8. dayTwo = new Date();
  9. hrNow = dayTwo.getHours();
  10. mnNow = dayTwo.getMinutes();
  11. scNow = dayTwo.getSeconds();
  12. miNow = dayTwo.getTime();
  13. if (hrNow == 0) {
  14. hour = 12;
  15. ap = " AM";
  16. } else if(hrNow <= 11) {
  17. ap = " AM";
  18. hour = hrNow;
  19. } else if(hrNow == 12) {
  20. ap = " PM";
  21. hour = 12;
  22. } else if (hrNow >= 13) {
  23. hour = (hrNow - 12);
  24. ap = " PM";
  25. }
  26. if (hrNow >= 13) {
  27. hour = hrNow - 12;
  28. }
  29. if (mnNow <= 9) {
  30. min = "0" + mnNow;
  31. }
  32. else (min = mnNow)
  33. if (scNow <= 9) {
  34. secs = "0" + scNow;
  35. } else {
  36. secs = scNow;
  37. }
  38. time = hour + ":" + min + ":" + secs + ap;
  39. document.form.button.value = time;
  40. self.status = time;
  41. setTimeout('clock()', 1000);
  42. }
  43. function timeInfo() {
  44. milliSince = miNow;
  45. milliNow = miNow - miVisit;
  46. secsVisit = Math.round(milliNow / 1000);
  47. minsVisit = Math.round((milliNow / 1000) / 60);
  48. alert("There have been " + milliSince + " milliseconds since midnight, January 1, 1970. "
  49. + "You have spent " + milliNow + " of those milliseconds on this page. "
  50. + ".... About " + minsVisit + " minutes, and "
  51. + secsVisit + " seconds.");
  52. }
  53. document.write("<center><form name=\"form\">"
  54. + "<input type=button value=\"Click for info!\""
  55. + " name=button onClick=\"timeInfo()\"></form></center>");
  56. onError = null;
  57. clock();
  58. // End -->
  59. <script language="JavaScript">
  60. <!-- Mouse Attack by Kurt Grigg - http://www.btinternet.com/~kurt.grigg/javascript
  61.  
  62. var num=10;//Number of dots!
  63. var vel=20;//Speed!
  64. var col=new Array('#0080ff','#ffffff','#0000ff','#44ccff');//Dot colours, min 2!
  65. var stopafter=60; //Stop and clear after x secondS!
  66. //Nothing needs altering past here....................
  67. var MAy=0;
  68. var MAx=0;
  69. var py=0;
  70. var px=0;
  71. var angle=0;
  72. var distance=0;
  73. var rep;
  74. var ry=0;
  75. var rx=0;
  76. var tmr=null;
  77. var n4=(document.layers);
  78. var n6=(document.getElementById&&!document.all);
  79. var ie=(document.all);
  80. var o6=(navigator.appName.indexOf("Opera") != -1)?true:false;
  81. var _d=(n4||ie)?'document.':'document.getElementById(" ';
  82. var _a=(n4||n6)?'':'all.';
  83. var _r=(n6)?'")':'';
  84. var _s=(n4)?'':'.style';
  85. var v=(n4)?"show":"visible";
  86. var put=false;
  87. stopafter*=1000;
  88. if (n4||n6){
  89. window.captureEvents(Event.MOUSEMOVE);
  90. function mouse1(e){
  91. if (put) return false;
  92. MAy = e.pageY-window.pageYOffset;
  93. MAx = e.pageX;
  94. }
  95. if (n4) window.onMouseMove=mouse1;
  96. else document.onmousemove=mouse1;
  97. }
  98. if (ie||o6){
  99. function mouse2(){
  100. if (put) return false;
  101. MAy = (ie)?event.clientY:event.clientY-window.pageYOffset;
  102. MAx = event.clientX;
  103. }
  104. document.onmousemove=mouse2;
  105. }
  106. if (n4){
  107. for (inc=0; inc < num; inc++)
  108. document.write('<layer name=dots'+inc+' top=0 left=0 width='+inc/3+' height='+inc/3+' bgcolor=#ffffff></layer>');
  109. }
  110. else{
  111. if (ie&&!o6){
  112. document.write("<div id='outer' style='position:absolute;top:0px;left:0px'>");
  113. document.write("<div style='position:relative'>");
  114. }
  115. for (inc=0; inc < num; inc++)
  116. 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>');
  117. if (ie&&!o6) document.write("</div></div>");
  118. }
  119. function pos(){
  120. h=(ie)?document.body.clientHeight:window.innerHeig ht-20;
  121. w=(ie)?document.body.clientWidth:window.innerWidth-20;
  122. ry=Math.round(Math.random()*h);
  123. rx=Math.round(Math.random()*w);
  124. rep=Math.round(Math.random()*3);
  125. if (rep == 3)ry=0;
  126. if (rep == 2)ry=h;
  127. if (rep == 1)rx=0;
  128. if (rep == 0)rx=w;
  129. py=ry;
  130. px=rx;
  131. }
  132. pos();
  133. function followleader(){
  134. sy=(!ie)?window.pageYOffset:0;
  135. sx=(!ie)?window.pageXOffset:0;
  136. if (ie) outer.style.top=document.body.scrollTop;
  137. for (inc=0; inc < num; inc++){
  138. randomcol=col[Math.floor(Math.random()*col.length)];
  139. temp1=eval(_d+_a+"dots"+inc+_r+_s);
  140. temp1.visibility=v;
  141. if (inc < num-1){
  142. temp2=eval(_d+_a+"dots"+(inc+1)+_r+_s);
  143. temp1.top=temp2.top;
  144. temp1.left=temp2.left
  145. }
  146. else{
  147. temp1.top=py+sy;
  148. temp1.left=px;
  149. }
  150. if (n4)temp1.bgColor=randomcol;
  151. else temp1.background=randomcol;
  152. }
  153. }
  154. function bomb(){
  155. ay=MAy-py;
  156. ax=MAx-px;
  157. angle=Math.round(Math.atan2(ay,ax)*180/Math.PI);
  158. if (angle < 0) angle += 360;
  159. MAdy=py-MAy;
  160. MAdx=px-MAx;
  161. distance=Math.floor(Math.sqrt(MAdx*MAdx+MAdy*MAdy) );
  162. go_y = Math.round(vel*Math.sin(angle*Math.PI/180));
  163. go_x = Math.round(vel*Math.cos(angle*Math.PI/180));
  164. py+=go_y;
  165. px+=go_x;
  166. if (distance < vel) pos();
  167. followleader();
  168. tmr=setTimeout("bomb()",20);
  169. }
  170. bomb();
  171. function dsbl(){
  172. v=(n4)?"hide":"hidden";
  173. put=true;
  174. MAx=0;
  175. MAy=0;
  176. setTimeout('clearTimeout(tmr)',stopafter+100);
  177. }
  178. setTimeout('dsbl()',stopafter);
  179. //-->
  180. </script>
  181. <title> ToNy Vu - #ToNy </title>
  182. <head> <!-- chống view code -start-share123.vn-->
  183. <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>
  184. <!-- chống view code -end-->
  185.  
  186.  
  187. <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>
  188.  
  189. <meta name="robots" content="NOINDEX, NOFOLLOW">
  190.  
  191.  
  192. <meta name="description" content="Lkin">
  193.  
  194.  
  195. <meta name="keyword" content="ToNy Vu - #ToNy">
  196.  
  197. <link rel="shortcut icon" href="http://i.mynicespace.com/1/152.gif" />
  198. <div class='widget-content'>
  199. <script type='text/javascript'>
  200. var DADrightclicktheme = 'Dark';
  201. var DADrightclickimage = 'https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-ash3/t1/579359_1391910751059250_1758092428_n.jpg';
  202. </script>
  203. <script type='text/javascript' src="http://yondarkness.googlecode.com/files/AntiCopas.js"> </script>
  204.  
  205. </div>
  206. <div class='clear'></div></div></div>
  207.  
  208. <link href='http://fonts.googleapis.com/css?family=Averia+Sans+Libre' rel='stylesheet' type='text/css'>
  209. <link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
  210. <style type="text/css">
  211.  
  212.  
  213. body {background:#000000 url(http://i44.tinypic.com/x4p6bt.gif) repeat scroll center 0;
  214. }
  215. a { text-decoration:none; }
  216. a:link { color: #00FF00}
  217. a:visited { color: #00FF00}
  218. a:hover { color: #00FF00}
  219. a:active { color: #00FF00}
  220.  
  221. .style2 {Helvetica, sans-serif; font-weight: bold; font-size: 15px; }
  222. .style3 {Helvetica, sans-serif; font-weight: bold; }
  223. .style4 {color: #FFFF00}
  224. .style5 {color: #FF0000}
  225. .style6 {color: #00FF00}
  226. img{border:4px double green;
  227. box-shadow:0px 9px 15px white;
  228. border-radius:10px;}
  229. .thanks{border:4px double green;
  230. box-shadow:0px 2px 20px white;
  231. border-radius:10px;
  232. padding:9px;}
  233. .a{text-shadow:0px 1px 10px lime;}
  234. </style>
  235. <script type="text/javascript">
  236.  
  237.  
  238. TypingText = function(element, interval, cursor, finishedCallback) {
  239.  
  240.  
  241. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  242.  
  243.  
  244. this.running = true; // Never run.
  245.  
  246.  
  247. return;
  248.  
  249.  
  250. }
  251.  
  252.  
  253. this.element = element;
  254.  
  255.  
  256. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  257.  
  258.  
  259. this.interval = (typeof interval == "undefined" ? 20 : interval);
  260.  
  261.  
  262. this.origText = this.element.innerHTML;
  263.  
  264.  
  265. this.unparsedOrigText = this.origText;
  266.  
  267.  
  268. this.cursor = (cursor ? cursor : "");
  269.  
  270.  
  271. this.currentText = "";
  272.  
  273.  
  274. this.currentChar = 0;
  275.  
  276.  
  277. this.element.typingText = this;
  278.  
  279.  
  280. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  281.  
  282.  
  283. TypingText.all.push(this);
  284.  
  285.  
  286. this.running = false;
  287.  
  288.  
  289. this.inTag = false;
  290.  
  291.  
  292. this.tagBuffer = "";
  293.  
  294.  
  295. this.inHTMLEntity = false;
  296.  
  297.  
  298. this.HTMLEntityBuffer = "";
  299.  
  300.  
  301. }
  302.  
  303.  
  304. TypingText.all = new Array();
  305.  
  306.  
  307. TypingText.currentIndex = 0;
  308.  
  309.  
  310. TypingText.runAll = function() {
  311.  
  312.  
  313. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  314.  
  315.  
  316. }
  317.  
  318.  
  319. TypingText.prototype.run = function() {
  320.  
  321.  
  322. if(this.running) return;
  323.  
  324.  
  325. if(typeof this.origText == "undefined") {
  326.  
  327.  
  328. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  329.  
  330.  
  331. return;
  332.  
  333.  
  334. }
  335.  
  336.  
  337. if(this.currentText == "") this.element.innerHTML = "";
  338.  
  339.  
  340. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  341.  
  342.  
  343. if(this.currentChar < this.origText.length) {
  344.  
  345.  
  346. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  347.  
  348.  
  349. this.tagBuffer = "<";
  350.  
  351.  
  352. this.inTag = true;
  353.  
  354.  
  355. this.currentChar++;
  356.  
  357.  
  358. this.run();
  359.  
  360.  
  361. return;
  362.  
  363.  
  364. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  365.  
  366.  
  367. this.tagBuffer += ">";
  368.  
  369.  
  370. this.inTag = false;
  371.  
  372.  
  373. this.currentText += this.tagBuffer;
  374.  
  375.  
  376. this.currentChar++;
  377.  
  378.  
  379. this.run();
  380.  
  381.  
  382. return;
  383.  
  384.  
  385. } else if(this.inTag) {
  386.  
  387.  
  388. this.tagBuffer += this.origText.charAt(this.currentChar);
  389.  
  390.  
  391. this.currentChar++;
  392.  
  393.  
  394. this.run();
  395.  
  396.  
  397. return;
  398.  
  399.  
  400. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  401.  
  402.  
  403. this.HTMLEntityBuffer = "&";
  404.  
  405.  
  406. this.inHTMLEntity = true;
  407.  
  408.  
  409. this.currentChar++;
  410.  
  411.  
  412. this.run();
  413.  
  414.  
  415. return;
  416.  
  417.  
  418. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  419.  
  420.  
  421. this.HTMLEntityBuffer += ";";
  422.  
  423.  
  424. this.inHTMLEntity = false;
  425.  
  426.  
  427. this.currentText += this.HTMLEntityBuffer;
  428.  
  429.  
  430. this.currentChar++;
  431.  
  432.  
  433. this.run();
  434.  
  435.  
  436. return;
  437.  
  438.  
  439. } else if(this.inHTMLEntity) {
  440.  
  441.  
  442. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  443.  
  444.  
  445. this.currentChar++;
  446.  
  447.  
  448. this.run();
  449.  
  450.  
  451. return;
  452.  
  453.  
  454. } else {
  455.  
  456.  
  457. this.currentText += this.origText.charAt(this.currentChar);
  458.  
  459.  
  460. }
  461.  
  462.  
  463. this.element.innerHTML = this.currentText;
  464.  
  465.  
  466. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  467.  
  468.  
  469. this.currentChar++;
  470.  
  471.  
  472. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  473.  
  474.  
  475. } else {
  476.  
  477.  
  478. this.currentText = "";
  479.  
  480.  
  481. this.currentChar = 0;
  482.  
  483.  
  484. this.running = false;
  485.  
  486.  
  487. this.finishedCallback();
  488.  
  489.  
  490. }
  491.  
  492.  
  493. }
  494.  
  495.  
  496. </script>
  497. </head>
  498. <script src='http://misbahudin-dcaesga.googlecode.com/files/efek-salju.js'/>
  499. <script src='http://misbahudin.googlecode.com/files/daun%20gugur.js'/>
  500. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  501. <script type='text/javascript'>
  502.  
  503.  
  504. //<![CDATA[
  505.  
  506.  
  507. var message="Cảm ơn bạn đã ghé thăm site của mình - ToNy Vu";
  508.  
  509.  
  510. function clickIE() {if (document.all) {(message);return false;}}
  511.  
  512.  
  513. function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {
  514.  
  515.  
  516. if (e.which==2||e.which==3) {(message);return false;}}}
  517.  
  518.  
  519. if (document.layers)
  520.  
  521.  
  522. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  523.  
  524.  
  525. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  526.  
  527.  
  528. document.oncontextmenu=new Function("return false")
  529.  
  530.  
  531. //]]>
  532.  
  533.  
  534. </script>
  535. <script type="text/javascript">
  536. <script language="javascript" src="http://zianxfly.250free.com/js/saljucursorfuchsia.js
  537. "></script>
  538.  
  539.  
  540.  
  541.  
  542.  
  543.  
  544.  
  545. </SCRIPT>
  546. <h1>
  547. <center>
  548. <script>
  549.  
  550.  
  551. farbbibliothek = new Array();
  552.  
  553.  
  554. 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");
  555.  
  556.  
  557. farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  558.  
  559.  
  560. 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");
  561.  
  562.  
  563. 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");
  564.  
  565.  
  566. 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");
  567.  
  568.  
  569. farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  570.  
  571.  
  572. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  573.  
  574.  
  575. farben = farbbibliothek[4];
  576.  
  577.  
  578. function farbschrift()
  579.  
  580.  
  581. {
  582.  
  583.  
  584. for(var i=0 ; i<Buchstabe.length; i++)
  585.  
  586.  
  587. {
  588.  
  589.  
  590. document.all["a"+i].style.color=farben[i];
  591.  
  592.  
  593. }
  594.  
  595.  
  596. farbverlauf();
  597.  
  598.  
  599. }
  600.  
  601.  
  602. function string2array(text)
  603.  
  604.  
  605. {
  606.  
  607.  
  608. Buchstabe = new Array();
  609.  
  610.  
  611. while(farben.length<text.length)
  612.  
  613.  
  614. {
  615.  
  616.  
  617. farben = farben.concat(farben);
  618.  
  619.  
  620. }
  621.  
  622.  
  623. k=0;
  624.  
  625.  
  626. while(k<=text.length)
  627.  
  628.  
  629. {
  630.  
  631.  
  632. Buchstabe[k] = text.charAt(k);
  633.  
  634.  
  635. k++;
  636.  
  637.  
  638. }
  639.  
  640.  
  641. }
  642.  
  643.  
  644. function divserzeugen()
  645.  
  646.  
  647. {
  648.  
  649.  
  650. for(var i=0 ; i<Buchstabe.length; i++)
  651.  
  652.  
  653. {
  654.  
  655.  
  656. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  657.  
  658.  
  659. }
  660.  
  661.  
  662. farbschrift();
  663.  
  664.  
  665. }
  666.  
  667.  
  668. var a=1;
  669.  
  670.  
  671. function farbverlauf()
  672.  
  673.  
  674. {
  675.  
  676.  
  677. for(var i=0 ; i<farben.length; i++)
  678.  
  679.  
  680. {
  681.  
  682.  
  683. farben[i-1]=farben[i];
  684.  
  685.  
  686. }
  687.  
  688.  
  689. farben[farben.length-1]=farben[-1];
  690.  
  691.  
  692.  
  693.  
  694.  
  695. setTimeout("farbschrift()",30);
  696.  
  697.  
  698. }
  699.  
  700.  
  701. //
  702.  
  703.  
  704. var farbsatz=1;
  705.  
  706.  
  707. function farbtauscher()
  708.  
  709.  
  710. {
  711.  
  712.  
  713. farben = farbbibliothek[farbsatz];
  714.  
  715.  
  716. while(farben.length<text.length)
  717.  
  718.  
  719. {
  720.  
  721.  
  722. farben = farben.concat(farben);
  723.  
  724.  
  725. }
  726.  
  727.  
  728. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  729.  
  730.  
  731. }
  732.  
  733.  
  734. setInterval("farbtauscher()",5000);
  735.  
  736.  
  737. text= " ."; //h
  738.  
  739.  
  740. string2array(text);
  741.  
  742.  
  743. divserzeugen();
  744.  
  745. //document.write(text);
  746.  
  747. </SCRIPT></center>
  748. </h1>
  749. <center></p><font face="Orbitron" size="7" color="white" class="a">ToNy Vu - #ToNy </font><br>
  750. <body onkeydown="return false">
  751. <hr />
  752. <table border="5" width="100%" height="300" cellpadding="5" bgcolor="black" class="shakeimage" onMouseover="init(this);rattleimage()" onload="init(this);rattleimage()">
  753. <tr>
  754.  
  755. <td width="30%" align="center" valign="center">
  756.  
  757. <img src="https://scontent-a-lax.xx.fbcdn.net/hphotos-xpf1/t1.0-9/1186052_223662034457018_1422022084_n.jpg" align="middle" border="0" width="400" height="400" class="shakeimage" onMouseover="init(this);rattleimage()" onload="init(this);rattleimage()" /><br />
  758.  
  759. </td>
  760.  
  761. <td width="70%" align="center" class="shakeimage" onMouseover="init(this);rattleimage()" onload="init(this);rattleimage()">
  762.  
  763. <FONT COLOR="RED" size="7">
  764. <span class="a"><blink>Warning !!!</blink> <br /></span>
  765. <code>
  766. <FONT COLOR="#00BFFF" size="4">
  767. <div id="example1">
  768. </div>
  769. <p id="example2">
  770.  
  771. <font color="#00BFFF" size="4">
  772. ===========================================<br />
  773. <span class="a">Hey You <br></span>
  774. <span class="a">I Am ToNy Vu ! <br></span>
  775. <span class="a">Birth Day : 25/11/199x <br></span>
  776. <span class="a">From: Thái Nguyên - Việt Nam<br></span>
  777. <span class="a">Sex: Male<br></span>
  778. <span class="a">Relationship : Single <br></span>
  779. <span class="a">Number Phone :0169 352 7727<br></span>
  780. <span class="a">Music: Nonstop - 100 Track Cực Mạnh - Đủ Để AE Lên Hàng - Vol 3<br></span>
  781. <span class="a">I'm Not Hacker , I'm ToNy Vu <br></span>
  782. <span class="a"><FONT COLOR="Green"> Contact : https://www.facebook.com/tonyvu.tn<br></span>
  783. <span class="a"><font color="#00BFFF" size="4">
  784. ===========================================<br />
  785.  
  786.  
  787. </p>
  788.  
  789.  
  790.  
  791. <script type="text/javascript">
  792.  
  793.  
  794. //Define first typing example:
  795.  
  796.  
  797. new TypingText(document.getElementById("example1"));
  798.  
  799.  
  800. //Define second typing example (use "slashing" cursor at the end):
  801.  
  802.  
  803. new TypingText(document.getElementById("example2"), 50, function(i){
  804.  
  805.  
  806. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  807.  
  808.  
  809. ar.length]; });
  810.  
  811.  
  812. //Type out examples:
  813.  
  814.  
  815. TypingText.runAll();
  816.  
  817.  
  818. </script></div>
  819. </code></font>
  820. </td>
  821. </tr>
  822. </table>
  823. <table width="100%" border="5" bgcolor="pink">
  824. <tr><td align="center">
  825. </td></tr>
  826. </table>
  827. <br />
  828. <br />
  829. <center>
  830. <a href="https://www.facebook.com/tonyvu.tn" role="button" target="_blank">
  831. <span style="font-family: "Comic Sans MS";text-decoration:none;text-underline:none">
  832. <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()">
  833. </span>
  834. </a>
  835. <p class=MsoNormal align=center style='text-align:center'><script type="text/javascript">
  836. //Define first typing example:
  837. new TypingText(document.getElementById("example1"));
  838. //Define second typing example (use "slashing" cursor at the end):
  839. new TypingText(document.getElementById("example2"), 50, function(i){
  840. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  841. ar.length]; });
  842. //Type out examples:
  843. TypingText.runAll();
  844. </div>
  845. <center>
  846. <br><FONT COLOR="white"><FONT SIZE=2>Copyright #ToNy - ToNy Vu
  847.  
  848. 2013 <a href='https://https://www.facebook.com/tonyvu.tn' title='ToNy'> Vu
  849. </a></FONT> </center>
  850. <script type="text/javascript" src="//www.blogger.com/static/v1/common/js/1851061575-csitail.js"></script>
  851. <object width="1" height="1"> <param name="movie" value="http://nhacdj.vn/embed-article-76835" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="allowscriptaccess" value="always" /> <param name="flashvars" value="autostart=true" /> <embed src="http://nhacdj.vn/embed-article-76835" flashvars="target=blank&autostart=true" allowscriptaccess="always" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="1" height="1"></embed></object>
  852. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement