Forum'da ara:
Ara


Yazar Mesaj
Mesaj09.08.2009, 10:06 (UTC)    
Mesaj konusu: ÇOK KANALLI BÜYÜK RADYO

Kod:
<center><iframe name="genisradio" marginwidth="0" marginheight="0" height="229" width="508" scrolling="no" src="http://www.izle.tv/radyoplayerx.asp" border="1" frameborder="0" style="border: 1px solid #C0C0C0; padding-left: 0"> </iframe></center>

______________

Oyun sitelerine müjde harika oyun tasarımları sadece sitemizde...
Mesaj09.08.2009, 10:08 (UTC)    
Mesaj konusu: TÜMÜNÜ SEÇ

Kod:
<HTML> <HEAD> <TITLE>Tümünü seç</TITLE> <style> .highlighttext{ background-color:yellow; font-weight:bold; } </style> <script> var copytoclip=1 function HighlightAll(theField) { var tempval=eval("document."+theField) tempval.focus() tempval.select() if (document.all&©toclip==1){ therange=tempval.createTextRange() therange.execCommand("Copy") window.status="Contents highlighted and copied to clipboard!" setTimeout("window.status=''",1800) } } </script> </HEAD> <BODY> <form name="test"> <a class="highlighttext" href="javascript:HighlightAll('test.select1')" _fcksavedurl="javascript:HighlightAll('test.select1')">Tümünü Seç</a><br> <textarea name="select1" rows=10 cols=35 > Bu kısa bir yazıdır. Tümünü seç linkine tıkladığınızda bu yazının tamamı seçilecektir.

______________

Oyun sitelerine müjde harika oyun tasarımları sadece sitemizde...
Mesaj17.08.2009, 11:17 (UTC)    
Mesaj konusu:

specoyun yazmış:
sitenize kendı sıtemızde kullandıgımız chat kodu eklıyenlerı mod yapılırWink

Kod:
<embed src="http://www.xatech.com/web_gear/chat/chat.swf" quality="high" width="600" height="450" name="chat" FlashVars="id=50877085&rl=Turkish" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://xat.com/update_flash.shtml" /><br><small><a target="_BLANK" href="http://xat.com/web_gear/?cb"></a> <a target="_BLANK" href="http://xat.com/web_gear/chat/go_large.php?id=50877085"></a></small><br>

<img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyMzQxMTQyMjI3MDMmcHQ9MTIzNDExNDIyOTE1NiZwPTUzMTUxJmQ9Jmc9MSZ*PSZvPTEyZDUzMjg3MTE2YTRlMGFhN2VhZTY1MjIxMWRjMmRj.gif" />





Madem öyle hadi mod yap Laughing Very Happy Laughing
Mesaj17.08.2009, 16:15 (UTC)    
Mesaj konusu:

Çok Özür Dileyerek Soruyorum Bu Kodları Nasıl Ekleyeceğiz Direk Yazıyorum Olmuyor Lütfen Yardım Msn: DJ-_-aheet( at )hotmail.com

Şimdiden Teşekkürler...
Mesaj18.08.2009, 12:35 (UTC)    
Mesaj konusu: yasamonliiine

[...]

Düzenlendi.

@benimsitem1993


En son yasamonline tarafından 13.12.2009 14:51:05 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj19.08.2009, 09:48 (UTC)    
Mesaj konusu:

Kod:
<script language="JavaScript1.2"> //Flying planes - by John Ely //Modified from: Autumn leaves script- by Kurt Grigg (kurt.grigg( at )virgin.net) //Modified by Dynamic Drive for NS6 functionality //visit http://www.dynamicdrive.com for this script //Pre-load your image below! //CHANGE 5 to the number of images listed below grphcs=new Array(5) //PRELOAD the involved images (extend or contract variables according to # of images used) Image0=new Image(); Image0.src=grphcs[0]="plane0.gif" Image1=new Image(); Image1.src=grphcs[1]="plane1.gif" Image2=new Image(); Image2.src=grphcs[2]="plane2.gif" Image3=new Image(); Image3.src=grphcs[3]="plane3.gif" Image4=new Image(); Image4.src=grphcs[4]="plane4.gif" //SPECIFY number of images to randomly display concurrently from list above. Less the more efficient Amount=3; Ypos=new Array(); Xpos=new Array(); Speed=new Array(); Step=new Array(); Cstep=new Array(); ns=(document.layers)?1:0; ns6=(document.getElementById&&!document.all)?1:0; ie=document.all if (ns){ for (i = 0; i < Amount; i++){ var P=Math.floor(Math.random()*grphcs.length); rndPic=grphcs[P]; document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>"); } } else{ document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i = 0; i < Amount; i++){ var P=Math.floor(Math.random()*grphcs.length); rndPic=grphcs[P]; document.write('<img id="si'+i+'" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">'); } document.write('</div></div>'); } WinHeight=(ns||ns6)?window.innerHeight-70:window.document.body.clientHeight; WinWidth=(ns||ns6)?window.innerWidth:window.document.body.clientWidth; for (i=0; i < Amount; i++){ Ypos[i] = Math.round(Math.random()*WinHeight); Xpos[i] = Math.round(Math.random()*WinWidth); Speed[i]= Math.random()*5+1; Cstep[i]=0; Step[i]=Math.random()*0.1+0.05; } function fly(){ var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight; var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth; var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop; var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft; for (i=0; i < Amount; i++){ sy = Speed[i]*Math.sin(Cstep[i]); sx = Speed[i]*2; Ypos[i]+=sy; Xpos[i]+=sx; if (Xpos[i] > WinWidth){ Ypos[i]=Math.round(Math.random()*WinHeight); Xpos[i]=-60; Speed[i]=Math.random()*5+1; } if (ns){ document.layers['sn'+i].left=Xpos[i]+wscrll; document.layers['sn'+i].top=Ypos[i]; } else if (ns6){ document.getElementById("si"+i).style.left=Xpos[i]+wscrll; document.getElementById("si"+i).style.top=Math.min(WinHeight,Ypos[i]); } else{ eval("document.all.si"+i).style.left=Xpos[i]+wscrll; eval("document.all.si"+i).style.top=Ypos[i]; } Cstep[i]+=Step[i]; } setTimeout('fly()',20); } if (ie||ns||ns6) window.onload=fly //--> </script>

______________

Mesaj19.08.2009, 11:34 (UTC)    
Mesaj konusu:

Saolun çok işime yaradı
Mesaj21.08.2009, 10:57 (UTC)    
Mesaj konusu: Futbol takımları haberleri ve duyuru panosu bir arada

Fenerbahçe haberleri ve duyuru panosu
Kod:
<table bordercolor="#111111" cellspacing="0" cellpadding="0" width="461" border="1" style="width: 461px; border-collapse: collapse; height: 142px">
<tbody>
<tr>
<td valign="top" width="33%"><img alt="www.fenerbahceoniki.tr.gg" border="0" src="http://img19.imageshack.us/img19/9413/kodbanksfb1.gif" _fcksavedurl="http://img19.imageshack.us/img19/9413/kodbanksfb1.gif" /></td>
</tr>
<tr>
<p>
<td valign="top" align="left" background="http://img513.imageshack.us/img513/6410/kodbanksfb3gif.gif"><br />
   <span style="color: #ffff99">Buralara Fenerbahçe haberlerini yazabilirsiniz .Sitenizle ilgili haber,duyuruları<br />
   buradan yapabilirsiniz..</span></td>
</p>
</tr>
<tr>
<td><iframe id="maraton" name="maraton" marginwidth="0" marginheight="0" src="http://www.maraton.com.tr/content/468x60_fb.php" frameborder="0" width="458" scrolling="no" height="78" style="width: 458px; height: 58px"></iframe></td>
</tr>
</tbody>
</table>



Beşiktaş haberleri ve duyuru panosu
Kod:
<table bordercolor="#111111" cellspacing="0" cellpadding="0" width="460" border="1" style="width: 460px; border-collapse: collapse; height: 102px">
<tbody>
<tr>
<td valign="top" width="33%"><img alt="www.kodbanks.tr.gg" border="0" src="http://img16.imageshack.us/img16/8861/bjk1kodbanks.gif" _fcksavedurl="http://img16.imageshack.us/img16/8861/bjk1kodbanks.gif" /></td>
</tr>
<tr>
<p>
<td valign="top" align="left" background="http://img14.imageshack.us/img14/2856/bjk2kodbanks.gif"><br />
   <span style="color: #000000">Buralara Beşiktaş haberlerini yazabilirsiniz .Sitenizle ilgili haber,
  <br /> buradan yapabilirsiniz..</span></td>
</p>
</tr>
<tr>
<td> <iframe src="http://www.maraton.com.tr/content/468x60_bjk.php" name="maraton" id="maraton" width="460" height="78" marginwidth="0" marginheight="0" hspace="0" vspace="0" scrolling="no" frameborder="0"></iframe> </td>
</tr>
</tbody>
</table>



Galatasaray haberleri ve duyuru panosu

Kod:
<table bordercolor="#FF0000" cellspacing="0" cellpadding="0" width="460" border="1" style="width: 460px; border-collapse: collapse; height: 72px">
<tbody>
<tr>
<td valign="top" width="33%"><img alt="www.kodbanks.tr.gg" border="0" src="http://img257.imageshack.us/img257/7876/kodbankstrgsgif.gif" _fcksavedurl="http://img257.imageshack.us/img257/7876/kodbankstrgsgif.gif" /></td>
</tr>
<tr>
<p>
<td valign="top" align="left" background="http://img4.imageshack.us/img4/3936/kodbankstr2gsgif.gif"><br />
<span style="color: #FFFF00">Buralara Galatasaray haberlerini yazabilirsiniz .Sitenizle ilgili haber,
<br /> buradan yapabilirsiniz..</span></td>
</tr>
<td> <iframe src="http://www.maraton.com.tr/content/468x60_gs.php" name="maraton" id="maraton" width="460" height="58" marginwidth="0" marginheight="0" hspace="0" vspace="0" scrolling="no" frameborder="0"></iframe> </td>
</tbody>
</table>



Trabzonspor haberleri ve duyuru panosu

Kod:
<table bordercolor="#FF0000" cellspacing="0" cellpadding="0" width="460" border="1" style="width: 460px; border-collapse: collapse; height: 72px">
<tbody>
<tr>
<td valign="top" width="33%"><img alt="www.kodbanks.tr.gg" border="0" src="http://img15.imageshack.us/img15/6138/kodbankstrtsgif.gif" _fcksavedurl="http://img257.imageshack.us/img257/7876/kodbankstrgsgif.gif" /></td>
</tr>
<tr>
<p>
<td valign="top" align="left" background="http://img35.imageshack.us/img35/6436/kodbankstr01tsgif.gif"><br />
<span style="color: #8B0000">Buralara Trabzonspor haberlerini yazabilirsiniz .Sitenizle ilgili haber,duyuru
<br /> buradan yapabilirsiniz..</span></td>
</tr>
<td> <iframe src="http://www.maraton.com.tr/content/468x60_ts.php" name="maraton" id="maraton" width="460" height="58" marginwidth="0" marginheight="0" hspace="0" vspace="0" scrolling="no" frameborder="0"></iframe>  </td>
</tbody>
</table>

______________
Mesaj22.08.2009, 07:57 (UTC)    
Mesaj konusu: buyrun

[...]

Düzenlendi.

@benimsitem1993


En son yasamonline tarafından 13.12.2009 14:51:16 tarihinde değiştirildi, toplam 1 kere değiştirildi
Mesaj22.08.2009, 08:03 (UTC)    
Mesaj konusu: ..

BU ALAN REKLAM YERİ DEĞİLDİRR


yasamonline.tr.gg KURALLARA UYALIM UYMUYANLARI UYARALIM
Mesaj23.08.2009, 12:54 (UTC)    
Mesaj konusu: Fareyi takip eden gözler...

Fareyi takip eden gözler...

Önizlemesi;


Kod:
 <!-- www.interforce.tr.gg -->  <div style="text-align: center;"><embed height="256" width="256" menu="true" loop="true" play="true" src="http://www.abcdisegno.com/images/flash/ojo.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></div><!-- www.interforce.tr.gg -->

______________
.fear{display:none;}
Mesaj07.09.2009, 14:28 (UTC)    
Mesaj konusu:

Bu kod sayesinde Açık öğretim fakültesi, Açık Öğretim Lisesi,Açık İlköğretim Okulu ve Öğrenci seçme sınavlarına ne kadar zamanın kaldığını görebilirsiniz.(Kaç gün ve kaç saat olarak ).Bilgiler sürekli güncellenmektedir.





Kod:
<iframe height="503" frameborder="0" width="520" scrolling="no" src="http://www.adaletegitim.com/sinavtarihleri.htm" framespacing="0" marginheight="0" marginwidth="0"></iframe>
Mesaj08.09.2009, 14:23 (UTC)    
Mesaj konusu: paylaşım güzel lakin

slm arkadaşlar bunları sitemize nasıl ekliyecez acaba bilgi verebiilirmisiniz.
saygılar...
Mesaj17.09.2009, 18:41 (UTC)    
Mesaj konusu:

Sitemiz'de şuan 39 tane cursol bulunmaktaddır yani mouse - fare imleç kodları sitene kodu ekledikten sonra Sade imleç yerine seçtiğiniz önizlemeli imleç oluşacaktır

Arrow http://www.xfare.tr.gg/mouse.htm


Question Siteme nasıl eklerim Question

---Tasarım ayarları
--Gelişmiş ayarlar
-Tasarım üstü yada tasarım altına kodu yapıştınız !!!

Daha devamı gelecek http://www.xfare.tr.gg
Mesaj17.09.2009, 18:41 (UTC)    
Mesaj konusu:

ellerine saglik dostum paylasimin icin tesekkürler
Önceki mesajları göster:   


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