Forum'da ara:
Ara


Yazar Mesaj
Mesaj29.08.2008, 01:53 (UTC)    
Mesaj konusu: KODLAR BURADA SEN NERDESİN

www.htlmkod-merkezi.tr.gg siteni tasarlamak istiyosan tıkla
______________
Arrow HTLMKOD PAYLAŞIM MERKEZİ
Arrow HER HAFTA GÜNCELLENEN SİTEMİZDE
Arrow GÖRÜŞ VE İSTEKLERİNİZİ BEKLİYORUZ Idea www.htlmkod-merkezi.tr.gg Idea


Mesaj29.08.2008, 01:54 (UTC)    
Mesaj konusu: FAREYİ TAKİP EDEN GÖZLER

FAREYİ TAKİP EDEN GÖZLER

Kod:
<SCRIPT LANGUAGE="JavaScript1.2">
<!-- Web Site:  http://www.htmlkodlar.net -->

var brOK = false, mie = false;
if (document.layers || document.all) brOK = true;
if (document.all) mie = true;
var ex = 0, ey = 0;
var ae, le, re, x0, y0, tid, realx, realy;
function navMove(e) {
ex = e.pageX;
ey = e.pageY;
moveeye()
return routeEvent(e);
}
function mieMove() {
ex = document.body.scrollLeft + event.x;
ey = document.body.scrollTop + event.y;
moveeye();
}
function moveeye() {
dy = ey - y0 - 20;
dx1 = ex - x0 - 20;
dx2 = ex - x0 - 60;
r = Math.sqrt(dx1 * dx1 + dy * dy);
if (r < 20) r = 20;
dx1 = dx1 * 10 / r + x0 + 10;
dy1 = dy * 10 / r + y0 + 10;
r = Math.sqrt(dx2 * dx2 + dy * dy);
if (r < 20) r = 20;
dx2 = dx2 * 10 / r + x0 + 50;
ae.left = x0;
ae.top = y0;
le.left = dx1;
le.top = dy1;
re.left = dx2;
re.top = dy1;
}
function setHandlers() {
if (!mie) {
y0 = document.eyeballs.top;
x0 = document.eyeballs.left;
ae = document.eyeballs;
le = document.lefteye;   
re = document.righteye;   
window.captureEvents(Event.MOUSEMOVE);
window.onMouseMove = navMove;
}
else {
y0 = document.all.eyeballs.style.pixelTop;
x0 = document.all.eyeballs.style.pixelLeft;
ae = document.all.eyeballs.style;
le = document.all.lefteye.style;
re = document.all.righteye.style;
window.document.onmousemove = mieMove;
}
realx = x0 + 0.1;
realy = y0 + 0.1;
moveall();
}
function moveall() {
rx = realx + 40;
ry = realy + 40;
rx += (ex - rx) * 0.1;
ry += (ey - ry) * 0.1;
realx = rx - 40;
realy = ry - 40;
x0 = Math.round(realx);
y0 = Math.round(realy);
moveeye();
tid = setTimeout('moveall()', 100);
}
function placeeyes(x, y) {
if (brOK) {
ex = x + 40;
ey = y + 40;
s = '<DIV ID ="dummy" STYLE="position:absolute; ' +
'top:'+y+'; left:'+x+'; width:10; height:10;"> </DIV>';
s += '<DIV ID="eyeballs" STYLE="position:absolute; ' +
'top:'+y+'; left:'+x+'; width:80; height:40;"><IMG SRC=' +
'"http://www.htmlkodlar.net/whites.gif" border=0></DIV>';
s += '<DIV ID="lefteye" STYLE="position:absolute; ' +
'top:'+(y+10)+'; left:'+(x+10)+'; width:20; height:20;">' +
'<IMG SRC="http://www.htmlkodlar.net/pupil.gif" border=0></DIV>';
s += '<DIV ID="righteye" STYLE="position:absolute; ' +
'top:'+(y+10)+'; left:'+(x+50)+'; width:20; height:20;">' +
'<IMG SRC="http://www.htmlkodlar.net/pupil.gif" border=0></DIV>';
document.writeln(s);
   }
}
function clearEyes()  {
if (tid) clearTimeout(tid);
}
placeeyes(200, 100);
window.onload = setHandlers;
window.onunload = clearEyes;
//  End -->
</script>
<p><center>
<font face="arial, helvetica" size="-2"><br>
<a href="http:// </a></font>
</center><p>

______________
Arrow HTLMKOD PAYLAŞIM MERKEZİ
Arrow HER HAFTA GÜNCELLENEN SİTEMİZDE
Arrow GÖRÜŞ VE İSTEKLERİNİZİ BEKLİYORUZ Idea www.htlmkod-merkezi.tr.gg Idea


Mesaj29.08.2008, 01:55 (UTC)    
Mesaj konusu: UZAY YOLU KODU

UZAY YOLU KODU


Kod:
<!--// www.htlmkod-merkezi.tr.gg //-->
<script type="text/javascript">
// <![CDATA[
var speed=33; // lower number for faster
var warp=3; // from 1 to 10
var stars=100; // number of stars
var colour="#000"; // colour of stars
var position=0; // set to '-1' for stars to appear behind text on page
var i;
var strs=new Array();
var strx=new Array();
var stry=new Array();
var stdx=new Array();
var stdy=new Array();
var swide=800;
var shigh=600;
warp/=100;
window.onload=function() { if (document.getElementById) {
  var b, s, temp;
  set_width();
  b=document.createElement("div");
  s=b.style;
  s.position="absolute";
  b.setAttribute("id", "bod");
  document.body.appendChild(b);
  set_scroll();
  for (i=0; i<stars; i++) {
    strs[i]=document.createElement("div");
    strs[i].style.backgroundColor=colour;
    strs[i].style.overflow="hidden";
    strs[i].style.position="absolute";
   strs[i].style.zIndex=position;
    stdy[i]=Math.random()*4-2;
    stdx[i]=Math.random()*6-3;
    temp=Math.random()*100;
    strx[i]=swide/2+temp*stdx[i];
    stry[i]=shigh/2+temp*stdy[i];
    if (Math.abs(stdx[i])+Math.abs(stdy[i])>2.66) {
      strs[i].style.width="2px";
      strs[i].style.height="2px";
    }
    else {
      strs[i].style.width="1px";
      strs[i].style.height="1px";
    }
    b.appendChild(strs[i]);
  }
  setInterval("warp_drive()", speed);
}}
function warp_drive() {
  for (i=0; i<stars; i++) {
    stry[i]+=stdy[i];
    strx[i]+=stdx[i];
    stdx[i]*=1+warp;
    stdy[i]*=1+warp;
    if (stry[i]>0 && stry[i]<shigh-3 && strx[i]>0 && strx[i]<swide-3) {
      strs[i].style.left=Math.floor(strx[i])+"px";
      strs[i].style.top=Math.floor(stry[i])+"px"
    }
    else {
      strx[i]=swide/2;
      stry[i]=shigh/2;
      stry[i]+=stdy[i]=Math.random()*4-2;
      strx[i]+=stdx[i]=Math.random()*6-3;
      if (Math.abs(stdx[i])+Math.abs(stdy[i])>2.66) {
        strs[i].style.width="2px";
        strs[i].style.height="2px";
      }
      else {
        strs[i].style.width="1px";
        strs[i].style.height="1px";
      }
    }
  }
}
window.onresize=set_width;
function set_width() {
  if (typeof(self.innerWidth)=="number") {
    swide=self.innerWidth;
    shigh=self.innerHeight;
  }
  else if (document.documentElement && document.documentElement.clientWidth) {
    swide=document.documentElement.clientWidth;
    shigh=document.documentElement.clientHeight;
  }
  else if (document.body.clientWidth) {
    swide=document.body.clientWidth;
    shigh=document.body.clientHeight;
  }
  swide-=2;
  shigh-=2;
}
window.onscroll=set_scroll;
function set_scroll() {
  var sleft, sdown;
  if (typeof(self.pageYOffset)=="number") {
    sdown=self.pageYOffset;
    sleft=self.pageXOffset;
  }
  else if (document.body.scrollTop || document.body.scrollLeft) {
    sdown=document.body.scrollTop;
    sleft=document.body.scrollLeft;
  }
  else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
    sleft=document.documentElement.scrollLeft;
   sdown=document.documentElement.scrollTop;
  }
  else {
    sdown=0;
    sleft=0;
  }
  var s=document.getElementById("bod").style;
  s.top=sdown+"px";
  s.left=sleft+"px";
}
// ]]>
</script>
<!--// www.htlmkod-merkezi.tr.gg //-->

______________
Arrow HTLMKOD PAYLAŞIM MERKEZİ
Arrow HER HAFTA GÜNCELLENEN SİTEMİZDE
Arrow GÖRÜŞ VE İSTEKLERİNİZİ BEKLİYORUZ Idea www.htlmkod-merkezi.tr.gg Idea


Mesaj29.08.2008, 01:56 (UTC)    
Mesaj konusu: KUR-ANI KERİM SÜRELERİ DİNLE

KUR-ANI KERİM SÜRELERİ DİNLE


Kod:
<!--// www.htlmkod-merkezi.tr.gg //--!>

<div align="center"> <table width="550" align="center" border="0"> <caption align="top"><span class="style2"><img alt="ein Bild" src="http://80.190.202.79/pic/o/orhanyildiz/kuan.jpg" _fcksavedurl="http://80.190.202.79/pic/o/orhanyildiz/kuan.jpg" /><img height="9" alt="ein Bild" width="550" src="http://80.190.202.79/pic/o/orhanyildiz/zbtn84.png" _fcksavedurl="http://80.190.202.79/pic/o/orhanyildiz/zbtn84.png" /><br /> <span class="style6"><center>Kuran-i Kerim Dinle</center><img height="60" alt="ein Bild" width="550" src="http://80.190.202.79/pic/o/orhanyildiz/besmele.gif" _fcksavedurl="http://80.190.202.79/pic/o/orhanyildiz/besmele.gif" /></span></span></caption> <tbody> <tr> <td width="131" bgcolor="#999999"> <p class="style4" align="center">Sure İsmi</p> </td> <td width="91" bgcolor="#999999"> <p class="style4" align="center">Media Player</p> </td> <td width="112" bgcolor="#999999"> <p class="style4" align="center">Sure İsmi</p> </td> <td width="90" bgcolor="#999999"> <p class="style4" align="center">Media Player</p> </td> </tr> <tr> <td> <p align="center">1-Fatiha Suresi</p> </td> <td> <p align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/1.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/1.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">50-Kaf Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/50.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/50.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">2-Bakara Suresi</p> </td> <td> <p class="style3" align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/2.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/2.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">51-Zariyat Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/51.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/51.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">3-Al-i İmran Suresi</p> </td> <td> <p class="style3" align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/3.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/3.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">52-Tur Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/52.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/52.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">4-Nisa Suresi</p> </td> <td> <p class="style3" align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/4.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/4.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">53-Necm Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/53.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/53.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">5-Maide Suresi</p> </td> <td> <p class="style3" align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/5.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/5.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">54-Kamer Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/54.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/54.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">6-En'am Suresi</p> </td> <td> <p class="style3" align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/6.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/6.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">55-Rahman Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/55.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/55.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">7-A'raf Suresi</p> </td> <td> <p class="style3" align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/7.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/7.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">56-Vakıa Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/56.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/56.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">8-Enfal Suresi</p> </td> <td> <p class="style3" align="center"><a class="style3" style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/8.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/8.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">57-Hadid Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/57.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/57.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">9-Tevbe Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/9.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/9.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">58-Mücadele Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/58.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/58.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">10-Yunus Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/10.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/10.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">59-Haşr Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/59.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/59.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">11-Hud Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/11.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/11.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">60-Mümtehine Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/60.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/60.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">12-Yusuf Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/12.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/12.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">61-Saff Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/61.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/61.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">13-Ra'd Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/13.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/13.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">62-Cum'a Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/62.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/62.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">14-İbrahim Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/14.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/14.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">63-Munafıkun Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/63.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/63.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">15-Hicr Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/15.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/15.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">64-Teğabun Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/64.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/64.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">16-Nahl Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/16.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/16.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">65-Talak Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/65.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/65.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">17-İsra Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/17.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/17.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">66-Tahrim Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/66.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/66.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">18-Kehf Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/18.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/18.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">67-Mülk Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/67.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/67.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">19-Meryem Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/19.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/19.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">68-Kalem Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/68.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/68.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">20-Taha Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/20.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/20.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">69-Hakka Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/69.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/69.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">21-Enbiya Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/21.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/21.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">70-Mearic Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/70.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/70.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">22-Hacc Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/22.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/22.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">71-Nuh Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/71.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/71.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">23-Mi'minun Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/23.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/23.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">72-Cin Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/72.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/72.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">24-Nur Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/24.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/24.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> <td> <p align="center">73-Müzzemmil Suresi</p> </td> <td> <p align="center"><a style="text-decoration: none" href="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/73.htm" _fcksavedurl="http://www.kuranmektebi.com/multimedia/kuranikerimdinle/abdulbasit/73.htm"><font color="#bf0f0e">Dinle</font></a></p> </td> </tr> <tr> <td> <p align="center">25-Furkan Suresi</p> </td> <td> <p class="style3" align="center"><a style="text-decoration</body></html><!--// www.htlmkod-merkezi.tr.gg //-->
           

______________
Arrow HTLMKOD PAYLAŞIM MERKEZİ
Arrow HER HAFTA GÜNCELLENEN SİTEMİZDE
Arrow GÖRÜŞ VE İSTEKLERİNİZİ BEKLİYORUZ Idea www.htlmkod-merkezi.tr.gg Idea


Mesaj29.08.2008, 01:58 (UTC)    
Mesaj konusu: ÜYELİK FORMU

ÜYELİK FORMU

Kod:
table align='center' cellpadding='3' cellspacing='3' border='0'> <tr><td align='center' bgcolor='eeeeee' colspan='2'><b>Yeni Kullanıcı Kaydı</b></td></tr> <form action='modules.php?name=Your_Account' method='post'> <tr><td bgcolor='cccccc'>Üye Adı:<br>(gerekli)</td><td bgcolor='eeeeee'><input type='text' name='ya_username' size='15' maxlength='20'><br><font class='tiny'>(Nick/Rumuz en az 4 En fazla 20 Karakter olmalıdır.)</font></td></tr> <tr><td bgcolor='cccccc'>Gerçek İsim:<br>(gerekli)</td><td bgcolor='eeeeee'><input type='text' name='ya_realname' size='40' maxlength='60'><br><font class='tiny'>Please enter both your first and last name</font></td></tr> <tr><td bgcolor='cccccc'>Email:<br>(gerekli)</td><td bgcolor='eeeeee'><input type='text' name='ya_user_email' size='40' maxlength='255'>&nbsp;<font class='tiny'></font></td></tr> <tr><td bgcolor='cccccc'>Mail adresinizi Onaylayın:</td><td bgcolor='eeeeee'><input type='text' name='ya_user_email2' size='40' maxlength='255'></td></tr> <tr><td bgcolor='cccccc'>Şifre:</td><td bgcolor='eeeeee'><input type='password' name='user_password' size='10' maxlength='20'><br><font class='tiny'>(Boş bırakırsanız şifreniz otomatik olarak oluşturulacak.)</font><br><font class='tiny'>(Şifreniz En az 4 En fazla 20 karakter olmalıdır.)</font></td></tr> <tr><td bgcolor='cccccc'>Şifre Tekrarı:</td><td bgcolor='eeeeee'><input type='password' name='user_password2' size='10' maxlength='20'><br><font class='tiny'>(Boş bırakırsanız şifreniz otomatik olarak oluşturulacak.)</font><br><font class='tiny'>(Şifreniz En az 4 En fazla 20 karakter olmalıdır.)</font></td></tr> <input type='hidden' name='op' value='new_confirm'> <tr><td align='right' bgcolor='eeeeee' colspan='2'><input type='submit' value='Continue'></td></tr> </form></table> buda üyelikikteki html kodların.. _________________ --------------------------------------------------- ..::PaYlAşTıĞıN KaDaR ÖnEmLiSiN::.. Eski Rumuz = coldman <form action="modules.php?name=Your_Account" method="post"><center><font class="content">Üye Adı<br><input type="text" name="username" size="10" maxlength="25" AutoComplete="off"><br>Şifre<br><input type="password" name="user_password" size="10" maxlength="20"><br><input type="hidden" name="random_num" value="49"><input type="hidden" name="gfx_check" value=""><input type="hidden" name="op" value="login"><input type="submit" value="Giriş"></font></center></form> <a href="modules.php?name=Your_Account&op=new_user">açabilirsiniz</a>

______________
Arrow HTLMKOD PAYLAŞIM MERKEZİ
Arrow HER HAFTA GÜNCELLENEN SİTEMİZDE
Arrow GÖRÜŞ VE İSTEKLERİNİZİ BEKLİYORUZ Idea www.htlmkod-merkezi.tr.gg Idea


Mesaj29.08.2008, 02:00 (UTC)    
Mesaj konusu: SİTENİZE HOŞ GELDİNİZ DİYEN KADIN

SİTENİZE HOŞ GELDİNİZ DİYEN KADIN

Kod:
 <script language="JavaScript"> var UID = "MOD_4748"; var POSX = 0; var POSY = 50;  var AUTO_PLAY = "off"; var SHOW = "always"; </script> <script language="JavaScript" src="http://www.yaoti.org/free_yaoti.js"> </script>
,,,

______________
Arrow HTLMKOD PAYLAŞIM MERKEZİ
Arrow HER HAFTA GÜNCELLENEN SİTEMİZDE
Arrow GÖRÜŞ VE İSTEKLERİNİZİ BEKLİYORUZ Idea www.htlmkod-merkezi.tr.gg Idea


Mesaj29.08.2008, 02:01 (UTC)    
Mesaj konusu: JAVA HATA ENGELLEYİCİ

JAVA HATA ENGELLEYİCİ

Kod:
<script>
/*JavaScript error stopper-
By JavaScript Kit (www.javascriptkit.com)
200+ free JavaScripts here
*/
function stoperror(){
return true
}
window.onerror=stoperror
</script>

______________
Arrow HTLMKOD PAYLAŞIM MERKEZİ
Arrow HER HAFTA GÜNCELLENEN SİTEMİZDE
Arrow GÖRÜŞ VE İSTEKLERİNİZİ BEKLİYORUZ Idea www.htlmkod-merkezi.tr.gg Idea


Mesaj29.08.2008, 07:46 (UTC)    
Mesaj konusu:

Kurallar:
1: baslıkları kücük harflerle ac.
2: paylaşılan kodları bi daha paylaşma..
3: reklam yapma.
4: kodları sabit baslıkta paylas.
5: JAVA SCRİPT kodlarını HTML bölümünde paylaşma..

Yani Bos Bos Baslıklar AÇMA...

______________
Mesaj29.08.2008, 09:07 (UTC)    
Mesaj konusu:

sağol
Mesaj29.08.2008, 09:20 (UTC)    
Mesaj konusu:

http://www.bedava-sitem.com/forum/viewtopic.php?t=25707
______________

NETTURK DEĞİŞİYOR COK YAKINDA...
Önceki mesajları göster:   


Powered by phpBB © 2001, 2005 phpBB Group
Türkçe Çeviri: phpBB Türkiye & Erdem Çorapçıoğlu