Bi kaç HTML kodu!

MaXXSoFT

New member
Katılım
28 Haz 2005
Mesajlar
1,569
Reaction score
0
Puanları
0
Yaş
36
Konum
Ankara-Aydın
Güzel bir düğme üzerine gelince parlayan !

<applet code="fphover.class" codebase="fpweb:///." width="120" height="24">
<param name="text" value="Düğme Metni">
<param name="textcolor" value="#FFFFFF">
<param name="effect" value="glow">
<param name="color" value="#808080">
<param name="bgcolor" value="#FFFFFF">
<param name="hovercolor" value="#000000">
<param name="url" valuetype="ref" value="http://www.tahminler.com/yalcin">
</applet>
 
mouse nuzu renklendiren HTML kodu !

<script language="JavaScript">

<!--
msg='mesaj';

font='Verdana,Arial';

size=2; // 1-7 only!

color='#ffffff';

speed=0.5;


//Alter nothing past here!!

ns=(document.layers);

ie=(document.all);

msg=msg.split('');

n=msg.length;

a=size*10;

ymouse=0;

xmouse=0;

scrll=0;

props="<font face="+font+" size="+size+" color="+color+">";

if (ns){

for (i=0; i < n; i++)

document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+msg+'</font></center></layer>');

}

if (ie){

document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

for (i=0; i < n; i++)

document.write('<div id="iemsg" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props+msg+'</font></div>');

document.write('</div></div>');

}

(ns)?window.captureEvents(Event.MOUSEMOVE):0;

function Mouse(evnt){

ymouse = (ns)?evnt.pageY+20-(window.pageYOffset):event.y+20;

xmouse = (ns)?evnt.pageX+20:event.x+20;

}

(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;

y=new Array();

x=new Array();

Y=new Array();

X=new Array();

for (i=0; i < n; i++){

y=0;

x=0;

Y=0;

X=0;

}

function assign(){

if (ie) outer.style.top=document.body.scrollTop;

for (i=0; i < n; i++){

var d=(ns)?document.layers['nsmsg'+i]:iemsg.style;

d.top=y+scrll;

d.left=x+(i*(a/2));

}

}

function ripple(){

scrll=(ns)?window.pageYOffset:0;

y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);

x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);

for (var i=1; i < n; i++){

y=Math.round(Y+=(y[i-1]-Y)*speed);

x=Math.round(X+=(x[i-1]-X)*speed);

}

assign();

setTimeout('ripple()',10);

}

if (ns||ie)window.onload=ripple;

// -->

</script>
 
Statüs barda muhteşem bir yazı şekli

<SCRIPT language=JavaScript>
puchtit=")<==( <<<KAYADİJİTAL GELECEK ÇAĞ İÇİN>>> )==>(";
letrero1="=H-=O-=Ş-=G-=E-=L-=D-=İ-=-N ";
letrero2="=S-=İ-=T-=E-=M-=İ-=Z-=E-=- ";ultimo1=letrero1.length-1;
ultimo2=letrero2.length-1;
tiempo=setTimeout("scroll()",50);
function scroll()
{
aux1=letrero1.charAt(ultimo1-1);
letrero1=aux1+letrero1.substring(0,ultimo1-1);
aux2=letrero2.charAt(0);
letrero2=letrero2.substring(1,ultimo2+1)+aux2;
window.status="(" + letrero2 + puchtit + letrero1 + ")";
tiempo=setTimeout("scroll()",50);
return true;
}
// -->
</SCRIPT>
 
Ekranı Titretmek !

<html><HEAD>

<SCRIPT LANGUAGE="JavaScript1.2">

<!-- Begin
function shake(n) {
if (self.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}
}
}
}
// End -->
</script>
</HEAD>
<BODY bgcolor="red">
<center><font color="white">
<h1>DÜĞMEYE BASIN VE OLANLARI GÖRÜN</h1>
<br>
<h3>dilerseniz seri bi şekilde space'e basmayı deneyin</h3>


<center>
<form>
<input type=button onClick="shake(2)" value="BAŞLA">
</form>
 
sayfaya güzel bi kapatma düğmesi !

<FORM>
<INPUT TYPE="BUTTON" VALUE="Kapat"
NAME="lowerButton" onClick="self.close()">
</FORM>
 
Loto Tahmin!

<html>
<HEAD>
<title>z-loto-3</title>
<style type="text/css">
.a1{
position:relative;
font-family:Verdana;
font-size:20px;
color:#888888;
}
</style>
<script language="JavaScript">
<!-- TR by [email protected]
function lotto(){
B=' ';
LottoNumbers=new Array();
for (i = 1; i <= 6; i++)
{
RandomNumber = Math.round(1+Math.random()*48);
for (j = 1; j <= 6; j)
{
if (RandomNumber == LottoNumbers[j])
{
RandomNumber=Math.round(1+Math.random()*48);
j=0;
}
j++;
}
LottoNumbers=RandomNumber;
}
LottoNumbers=LottoNumbers.toString();
X=LottoNumbers.split(',');
for (i=0; i < X.length; i++)
{
X=X+' ';
if (X.length==2)
X='0'+X;
}
X=X.sort();
for (i=0; i < X.length; i++)
{
OutPut=B+=X;
}
if (document.all)document.all.layer1.innerHTML=OutPut;
if (document.getElementById)document.getElementById("layer1").innerHTML=OutPut;
if (document.layers){
document.layers.layer1.document.open();
document.layers.layer1.document.write("<span style='position:absolute;top:0px;left:0px;font-family:Verdana;font-size:20px;color:#888888;text-align:center'> "+OutPut+"</span>");
document.layers.layer1.document.close();
}
T=setTimeout('lotto()',50);
window.status=OutPut;
}
function StOp(){
setTimeout('clearTimeout(T)',3000);
}
//-->
</script>
</HEAD>
<BODY><table border='0' width=250 height=50>
<tr valign='middle'>
<td align='center'>
<form name=form>
<input type=button value='Tıklayın, Milyarlara Yaklaşın' onClick="lotto();StOp()">
</form>
<span id=layer1 class=a1>Sonuçlar</span>
</td>
</tr>
</table>
</BODY>
</html>
 
güzel bi menu örneği !

<style>
.menulines{
border:1px solid white;
}

.menulines a{
text-decoration:none;
color:black;
}
</style>

<script language="JavaScript1.2">

/*
Highlight menu effect script: By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/

function borderize(what,color){
what.style.borderColor=color
}

function borderize_on(e){
if (document.all)
source3=event.srcElement
else if (document.getElementById)
source3=e.target
if (source3.className=="menulines"){
borderize(source3,"black")
}
else{
while(source3.tagName!="TABLE"){
source3=document.getElementById? source3.parentNode : source3.parentElement
if (source3.className=="menulines")
borderize(source3,"black")
}
}
}

function borderize_off(e){
if (document.all)
source4=event.srcElement
else if (document.getElementById)
source4=e.target
if (source4.className=="menulines")
borderize(source4,"white")
else{
while(source4.tagName!="TABLE"){
source4=document.getElementById? source4.parentNode : source4.parentElement
if (source4.className=="menulines")
borderize(source4,"white")
}
}
}

</script>






//////////////////////////////////Daha sonra da/////////////////
<table border="0" width="200" cellspacing="0" cellpadding="0" onMouseover="borderize_on(event)" onMouseout="borderize_off(event)">

<tr><td width="100%" bgcolor="#E6E6E6"><font face="Arial" size="3"><b>Main Menu</b></font></td></tr>

<tr><td width="100%" class="menulines"><font face="Arial" size="2"><a href="http://wsabstract.com">Website Abstraction</a></font></td></tr>

<tr><td width="100%" class="menulines"><font face="Arial" size="2"><a href="http://freewarejava.com">Freewarejava.com</a> </font></td></tr>

<tr><td width="100%" class="menulines"><font face="Arial" size="2"><a href="http://wsabstract.com/cgi-bin/Ultimate.cgi">Webmaster Help Forum</a> </font></td></tr>

<tr><td width="100%" class="menulines"><font face="Arial" size="2"><a href="http://www.webreview.com">Web Review</a></font></td></tr>

<tr><td width="100%" class="menulines"><font face="Arial" size="2"><a href="http://www.builder.com">Builder.com</a> </font></td></tr>

</table>
 
Yanıp Sönen Ateşli Bi link !


<STYLE>#glowtext {
FILTER: glow(color=#c57d5a,strength=2); WIDTH: 100%}
A:link {text-decoration: none; color: #000066}
A:visited {text-decoration: none; color: #000066}
A:active {text-decoration: none; color: #000066}
A:hover {text-decoration: none; color: #ceb464}
</STYLE>

<SCRIPT language=JavaScript1.2>
function glowit(which){
if (document.all.glowtext[which].filters[0].strength==3)
document.all.glowtext[which].filters[0].strength=2
else
document.all.glowtext[which].filters[0].strength=3
}

function glowit2(which){
if (document.all.glowtext.filters[0].strength==3)
document.all.glowtext.filters[0].strength=2
else
document.all.glowtext.filters[0].strength=3
}

function startglowing(){
if (document.all.glowtext&&glowtext.length){
for (i=0;i<glowtext.length;i++)
eval('setInterval("glowit('+i+')",150)')
}
else if (glowtext)
setInterval("glowit2(0)",150)
}

if (document.all)
window.onload=startglowing
</SCRIPT>
<SPAN id=glowtext>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 1</FONT></A>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 2</FONT></A>
<br>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 1</FONT></A>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 2</FONT></A>
<br>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 1</FONT></A>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 2</FONT></A>
<br>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 1</FONT></A>
<A href="http://www.maxxsoft.net/" target=_blank><FONT size=2>LİNK 2</FONT></A></span>
 
Güzel Bi Arama Motoru !

<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1254">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Web İşlem</title>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<script language="JavaScript">
<!--
function wordsplit(items)
{
var charect = "";
for (var n = 1 ; n <= items.length ; n++)
{
if (items.substring(n-1,n) == " ")
{ charect+="+"; }
else
{ charect+=items.substring(n-1,n); }
}
return charect;
}
function search()
{
var keywords=document.searching.query.value;
var search1;
var search2;
var search3;
var search4;
var search5;
var search6;
var search7;
var search8;
var search9;
var search10;

key=wordsplit(keywords);

if(document.searching.yahoo.checked)
{
search1= document.searching.yahoo.value;
search1+=key;

wind=window.open(search1,"newwindow1","width=600,height=200,scrollbars=yes");

}
if(document.searching.altavista.checked)
{
search2 = document.searching.altavista.value;
search2+=key;

wind=window.open(search2,"newwindow2","width=700,height=200,scrollbars=yes");

}
if(document.searching.webcrawler.checked)
{
search3 = document.searching.webcrawler.value;
search3+=key;

wind=window.open(search3,"newwindow3","width=700,height=200,scrollbars=yes");

}
if(document.searching.hotbot.checked)
{
search4 = document.searching.hotbot.value;
search4+=key;

wind=window.open(search4,"newwindow4","width=700,height=200,scrollbars=yes");

}
if(document.searching.excite.checked)
{
search5 = document.searching.excite.value;
search5+=key;

wind=window.open(search5,"newwindow5","width=700,height=200,scrollbars=yes");

}
if(document.searching.lycos.checked)
{
search6 = document.searching.lycos.value;
search6+=key;

wind=window.open(search6,"newwindow6","width=600,height=200,scrollbars=yes");

}
if(document.searching.infoseek.checked)
{
search7 = document.searching.infoseek.value;
search7+=key;

wind=window.open(search7,"newwindow7","width=700,height=200,scrollbars=yes");

}
if(document.searching.metacrawler.checked)
{
search8 = document.searching.metacrawler.value;
search8+=key;

wind=window.open(search8,"newwindow8","width=700,height=200,scrollbars=yes");

}
if(document.searching.searchcom.checked)
{
search9 = document.searching.searchcom.value;
search9+=key;

wind=window.open(search9,"newwindow9","width=700,height=200,scrollbars=yes");

}
if(document.searching.netfind.checked)
{
suffix1="&lk=excite_netfind_us"
search10 = document.searching.netfind.value;
search10+=key;
search10+=suffix1;

wind=window.open(search10,"newwindow10","width=700,height=200,scrollbars=yes");

}

}
//-->
</script><div align="center"><center>

<table border="1" cellpadding="5" cellspacing="0" width="600"
bgcolor="#FFFFFF" bordercolor="#11B9EA">
<tr>
<td align="center"> </td>
</tr>
<tr>
<td align="center" valign="bottom" width="600"
bgcolor="#FFFFFF" height="30"><div align="center"><center><table
border="1" cellpadding="5" cellspacing="0" width="100%"
bordercolor="#11B9EA">
<tr>
<td><p align="center"><a
href="http://www.adresonline.gen.tr.tc"><font
color="#FF0000" size="3" face="Verdana"><strong>ADRES</strong></font><font
color="#0000FF" size="3" face="Verdana"><strong>ONLİNE
</strong></font></a></p>
</td>
</tr>
</table>
</center></div><p align="center"><font color="#FF9900"
size="3" face="Verdana"><strong><br>
</strong></font><font color="#000000" size="3"
face="Verdana"><strong>ARAMA MOTORU</strong></font><br>
</p>
<table border="0" width="100%" bgcolor="#FFFFFF">
<tr>
<td width="30%"> </td>
<td width="30%"><form name="searching">
<p align="center"><font size="2"
face="Verdana"><strong>Arayacağınız
kelimeyi yazınız <br>
<input type="text" size="20" name="query"><br>
<br>
<br>
Arama motorunu seçiniz </strong></font></p>
<table border="1" width="600"
bordercolor="#11B9EA">
<tr>
<td width="50%"><font size="2"
face="Verdana"><strong><input
type="checkbox" name="yahoo"
value="http://search.yahoo.com/search?p=cyber">Yahoo<br>
<input type="checkbox"
name="altavista"
value="http://www.altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=.&q=">Altavista<br>
<input type="checkbox"
name="webcrawler"
value="http://www.webcrawler.com/cgi-bin/WebQuery?searchText=">WebCrawler<br>
<input type="checkbox" name="excite"
value="http://www.excite.com/search.gw?trace=a&search=">Excite<br>
<input type="checkbox" name="lycos"
value="http://www.lycos.com/cgi-bin/pursuit?query=">Lycos<br>
<input type="checkbox" name="lycos1"
value="http://www.lycos.com/cgi-bin/pursuit?query="></strong></font><font
color="#FF0000" size="2"
face="Verdana"><strong>Adres</strong></font><font
color="#0000FF" size="2"
face="Verdana"><strong>online</strong></font></td>
<td width="50%"><font size="2"
face="Verdana"><strong><input
type="checkbox" name="hotbot"
value="http://www.search.hotbot.com/IU0jYX9275CF2F6A99B3389603224C1C08A6924F/hResult.html?SM=MC&MT=">Hotbot<br>
<input type="checkbox"
name="infoseek"
value="http://www.infoseek.com/Titles?qt=">Infoseek<br>
<input type="checkbox"
name="metacrawler"
value="http://www.metacrawler.com/crawler?general=">Metacrawler<br>
<input type="checkbox"
name="searchcom"
value="http://www.search.com/Infoseek/1,135,0,0200.html?QUERY=">Search.com<br>
<input type="checkbox" name="netfind"
value="http://netfind.aol.com/search.gw?search=">Netfind<br>
<input type="checkbox" name="lycos2"
value="http://www.lycos.com/cgi-bin/pursuit?query="></strong></font><font
color="#FF0000" size="2"
face="Verdana"><strong>Adres</strong></font><font
color="#0000FF" size="2"
face="Verdana"><strong>online</strong></font></td>
</tr>
</table>
<div align="center"><center><table border="0">
<tr>
<td><p align="center"><font size="2"
face="Verdana"><strong><input
type="submit" value="Search"
onclick="search()"><input
type="reset" value=" Clear "> </strong></font></p>
</td>
</tr>
</table>
</center></div><p align="center"><font
size="2" face="Verdana"><strong><br>
</strong></font></p>
<p><font size="2" face="Verdana"><strong>Script
by: </strong></font><a
href="http://www.adresonline.gen.tr.tc"><font
color="#FF0000" size="2" face="Verdana"><strong>ADRES</strong></font><font
color="#0000FF" size="2" face="Verdana"><strong>ONLİNE</strong></font></a></p>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</center></div>
</body>
</html>
 
Mail inizi kendınız yapın guzel bı html yazısı

<html>
<head>
<title>kadir com hos geldınız</title>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="expires" CONTENT="0">
<meta HTTP-EQUIV="content-language" content="TR">
<meta NAME="robots" CONTENT=" all">
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1254">
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-9">
<link rel="stylesheet" href="nfrServisler.css" tppabs="http://www.kadir.com/include/general/nfrServisler.css">
<link rel="stylesheet" href="servisler.css" tppabs="http://www.kadir.com/include/general/servisler.css">
<script type="text/javascript" src="footer.js" tppabs="http://www.kadir.com/include/ortaklik/footer.js"></script>
<script type="text/javascript" src="header.js" tppabs="http://www.kadir.com/include/ortaklik/header.js"></script>
<style>
.text{font-size:10pt;font-family:tahoma;color:black}
</style>
<script>
function popup(url){
var yenipencere = null;
yenipencere=window.open('','yenipencere','width=625,height=300,status=no,toolbar=no,menubar=no,directories=no, location=no,scrollbars=yes,resizable=no,alwaysRaised=yes,screenX=20,screenY=5,titlebar=yes,z-lock=yes,left=20,top=130');
yenipencere.location.href=url;
if (yenipencere != null) {
if (yenipencere.opener == null){
yenipencere.opener = self;
}
yenipencere.location.href=url;
yenipencere.focus();
}
}
</script>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" bgcolor="#FFFFFF">
<script language="JavaScript">showHeader();</script>
<table width="760" cellpadding="0" cellspacing="0" border="0" align="center" bgcolor="White">
<tr bgcolor="White">
<td width="130">
<table width="100%" cellpadding="0" cellspacing="0" align="center" border="0">
<tr>
<td align="center" height="65"><a href="index.htm">
<font size="3">kadir</font></a></td>
</tr>
</table>
</td>
<td width="630">
<table width="100%" height="16" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><img src="blank-1.gif" tppabs="http://img.kadir.com/general/blank.gif" width="1" height="37" border="0" alt=""></td>
</tr>
<tr>
<td width="90%"><img src="blank-1.gif" tppabs="http://img.kadir.com/general/blank.gif" width="40" height="1" border="0" alt=""></td>
<td align="right" width="4%"><img src="blank-1.gif" tppabs="http://img.kadir.com/general/blank.gif" width="2" height="1" border="0" alt=""></td>
<td align="right" width="6%"><img src="blank-1.gif" tppabs="http://img.kadir.com/general/blank.gif" width="29" height="1" border="0" alt=""></td>
</tr>
<tr>
<td colspan="3"><img src="blank-2.gif" tppabs="http://www.kadir.com/img/general/blank.gif" width="1" height="5" border="0" alt=""></td>
</tr>
<tr>
<td colspan="3"><img src="blank-2.gif" tppabs="http://www.kadir.com/img/general/blank.gif" width="1" height="5" border="0" alt=""></td>
</tr>
</table>
</td>
</tr>
</table>
<table width=760 cellpadding=0 cellspacing=0 border=0 bgcolor=white align=center>
<tr>

<td valign=top height="20">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="9"></td>
<td class="borderBottom">  <font size="2"><b>HESAP YÖNETİMİ</b></font></td>
<td width="8"></td>
</tr>
</table>
<table width=100% cellpadding=0 cellspacing=0 border=0>
<tr>
<td height=17></td>
</tr>
<tr>
<td colspan=2>
<!--1-->
<table width=80% border=0 cellspacing=0 cellpadding=0 align="center">
<tr><td valign=top >
<!--icerik-->
<table border="0" width="400" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="#333399">
<table width="100%" cellpadding="0" cellspacing="1" align="center" border="0">
<tr>
<td bgcolor="white">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td colspan="2" height="20" bgcolor="#333399">  <font color="white" size="2"><strong>Satış Ortağı Hesap Yönetimi Girişi</strong></font></td>
</tr>
<tr>
<td colspan="2"><img src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="1" height="20"></td>
</tr>
<FORM action="http://ortaklik.kadir.com/start.asp" method="post" name="formAccount">
<tr>
<td width="40%" bgcolor="white" align="right" class="text">E-Mail : </td>
<td width="60%" bgcolor="white"><INPUT size=20 name=username value=></td>
</tr>
<tr>
<td width="40%" bgcolor="white" align="right" class="text">Şifre : </td>
<td width="60%" bgcolor="white"><INPUT size=20 name=password type=password value=""></td>
</tr>
<tr>
<td colspan="2"><img src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="1" height="3"></td>
</tr>
<tr>
<td colspan="2" align="center"><img src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="7" height="20"><img height="17" src="lock.gif" tppabs="http://www.kadir.com/ortaklik/images/lock.gif" width="15"><img height="1" src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="3"><INPUT id=submit1 name=submit1 type=submit value="Güvenli Giriş"></form>
</td>
</tr>
<tr>
<td colspan="2" align="center"><img src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="40" height="1"><font size="1">Güvenli Giriş aşamasında tarayıcınızın<br>
<img src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="64" height="1">açtığı pencere(ler)de Tamam / Evet'i seçin.</font></td>
</tr>
<tr>
<td colspan="2"><img src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="10" height="20" align="absmiddle"></td>
</tr>
<tr>
<td colspan="2" align="center"><img src="blank-4.gif" tppabs="http://www.kadir.com/ortaklik/images/blank.gif" width="10" height="30" align="absmiddle"><img height="18" src="soru.gif" tppabs="http://www.kadir.com/ortaklik/images/soru.gif" width="18" align="absmiddle"><font face="Tahoma" size="2">  <a href="javascript:if(confirm('http://ortaklik.kadir.com/sendpassword.asp?Table=Accounts&Title=Affiliate \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://ortaklik.kadir.com/sendpassword.asp?Table=Accounts&Title=Affiliate'" tppabs="http://ortaklik.kadir.com/sendpassword.asp?Table=Accounts&Title=Affiliate">Şifremi Unuttum</a></font></td>
</tr>
</table>
</td>
</tr>
</table>

</td>
</tr>
</table>

<!--icerik bit-->
</td></tr></table>
<!--0-->
</td>
</tr>
</table>
</td>
</tr>
</table>





<script language="JavaScript">showFooter();</script>
</body>
</html>
 
Yukaru doğru kayan yazı .

<SCRIPT language=JavaScript>
<!--hide me
var marqueewidth=400
var marqueeheight=-400
var speed=1.8
var marqueecontents='<table border=0 width=600 cellspacing=0 cellpadding=0><tr><td width=600<font color="#FFCCFF"><font color="#FFFFFF"><font face=Tahoma size=2>Her ateş bir kül,bulur elbet kendine;<br>Her yeşil bir dal,<br>Her su bir damla,<br>Her ateş bir kül,<br>Her takvim bir yıl,<br>bulur elbet kendine!<br>Her yangın bir duman,<br>Her öğrenci bir okul,<br>Her artı bir eksi,<br>Her yol bir taşıt,<br>Her soru bir yanıt,<br>Her ressam bir tuval,<br>Her kış bir ayaz,<br>Her kitap bir okul,<br>Her şarap bir adam bulur kendine;<br>yeter ki şarap, şarap olsun içen çıkar...<br>Her deniz bir martı,<br>Her ömür bir tufan,<br>Her rüya bir uyku,<br>Her nota bir şarkı,<br>Her mezar bir ölüm,<br>Her ağaç bir kök,<br>Her dağ bir duman,<br>Her güneş doğacak bir kuytuluk<br>bulur ya kendine,bulur ya;<br>Ben,<br>Senden başka,<br>Sen,<br>bulamam,<br>b u l a m a m !</p></font></font></table>'
if (document.all)
document.write('<marquee direction=up scrollAmount='+speed+' style=width:'+marqueewidth+';height:'+marqueeheight+'>'+marqueecontents+'</marquee>')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout(window.onresize=regenerate,100)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-9)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout(scrollit(),200)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2
//end hide-->
</SCRIPT>
 
bu muydu bi kaç HTML kodu neyse paylaşım için saol kardeeş ellrine sağlık
 
Status bar da soldan sağa kayan yazı

<script language="Javascript">
<!--
var x = 0
var speed = 90
var text = "istediğini yaz"
var course =76
var text2 = text

function Scroll() {
window.status = text2.substring(0, text2.length)
if (course < text2.length) {
setTimeout("Scroll2()", speed)
}
else {
text2 = " " + text2
setTimeout("Scroll()", speed);
}
}
function Scroll2() {
window.status = text2.substring(x, text2.length)
if (text2.length - x == text.length) {
text2 = text
x = 0
setTimeout("Scroll()", speed);
}
else {
x++
setTimeout("Scroll2()", speed);
}
}
Scroll()
//-->
</script>
 
Kutu içinde sürekli yazılar çıkıyor

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1254">
<SCRIPT language=JavaScript>
<!-- begin
// 1996 by Christoph Bergmann... http://acc.de/cb
// Please keep this note...
// global variables
var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this=textlist.arguments;
}
tl=new textlist
(

" Cehre.net YAPIMI"," www.Cehre.net "," Yeni Portalınız"," Sohbet Odaları "," iRc.Cehre.net By IQ"
);
var x=0; pos=0;
var l=tl[0].length;

function textticker()
{
document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";

if(pos++==l)
{
pos=0;
setTimeout("textticker()",1000);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else
setTimeout("textticker()",50);
}
// end -->
</SCRIPT>

<META content="Microsoft FrontPage 5.0" name=GENERATOR></HEAD>
<BODY bgcolor="#000000"><center>
<SCRIPT language=JavaScript>
<!--
document.write("<FORM NAME=\"tickform\">");
document.write("<INPUT TYPE=\"TEXT\" NAME=\"tickfield\" SIZE=\"20\">");
document.write("</FORM>");
textticker();
//-->
</SCRIPT></center>
<title> www.Cehre.net By IQ </title>
</BODY></HTML>
 
arkadaş ben bunlardan bişey anlamadım bunlar nedir beni biraz aydın latta biz de bilelim ney miş acaba okey?
 
Matrix Yazısı !

<style type="text/css">
.matrix { font-family:Lucida Console, Courier, Monotype; font-size:10pt; text-align:center; width:10px; padding:0px; margin:0px;}
</style>

<script type="text/javascript" language="JavaScript">

<!--
var rows=11;
var speed=50;
var reveal=2;
var effectalign="default"

var w3c=document.getElementById && !window.opera;;
var ie45=document.all && !window.opera;
var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
var m_coch=new Array();
var m_copo=new Array();
window.onload=function() {
if (!w3c && !ie45) return
var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
ma_txt=" "+ma_txt+" ";
columns=ma_txt.length;
if (w3c) {
while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
ma_tab=document.createElement("table");
ma_tab.setAttribute("border", 0);
ma_tab.setAttribute("align", effectalign);
ma_tab.style.backgroundColor="#000000";
ma_bod=document.createElement("tbody");
for (x=0; x<rows; x++) {
ma_row=document.createElement("tr");
for (y=0; y<columns; y++) {
matemp=document.createElement("td");
matemp.setAttribute("id", "Mx"+x+"y"+y);
matemp.className="matrix";
matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
ma_row.appendChild(matemp);
}
ma_bod.appendChild(ma_row);
}
ma_tab.appendChild(ma_bod);
matrix.appendChild(ma_tab);
} else {
ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
for (var x=0; x<rows; x++) {
ma_tab+='<t'+'r>';
for (var y=0; y<columns; y++) {
ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'"> </'+'td>';
}
ma_tab+='</'+'tr>';
}
ma_tab+='</'+'table>';
matrix.innerHTML=ma_tab;
}
ma_cho=ma_txt;
for (x=0; x<columns; x++) {
ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
m_copo[x]=0;
}
ma_bod=setInterval("mytricks()", speed);
}

function mytricks() {
x=0;
for (y=0; y<columns; y++) {
x=x+(m_copo[y]==100);
ma_row=m_copo[y]%100;
if (ma_row && m_copo[y]<100) {
if (ma_row<rows+1) {
if (w3c) {
matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
matemp.firstChild.nodeValue=m_coch[y];
}
else {
matemp=document.all["Mx"+(ma_row-1)+"y"+y];
matemp.innerHTML=m_coch[y];
}
matemp.style.color="#33ff66";
matemp.style.fontWeight="bold";
}
if (ma_row>1 && ma_row<rows+2) {
matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y];
matemp.style.fontWeight="normal";
matemp.style.color="#00ff00";
}
if (ma_row>2) {
matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y];
matemp.style.color="#009900";
}
if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
else if (ma_row<rows+2) m_copo[y]++;
else if (m_copo[y]<100) m_copo[y]=0;
}
else if (Math.random()>0.9 && m_copo[y]<100) {
m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
m_copo[y]++;
}
}
if (x==columns) clearInterval(ma_bod);
}

function zoomer(ycol) {
var mtmp, mtem, ytmp;
if (m_copo[ycol]==Math.floor(rows/2)+1) {
for (ytmp=0; ytmp<rows; ytmp++) {
if (w3c) {
mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
mtmp.firstChild.nodeValue=m_coch[ycol];
}
else {
mtmp=document.all["Mx"+ytmp+"y"+ycol];
mtmp.innerHTML=m_coch[ycol];
}
mtmp.style.color="#33ff66";
mtmp.style.fontWeight="bold";
}
if (Math.random()<reveal) {
mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
}
if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
m_copo[ycol]+=199;
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]>200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
}
mtmp.style.fontWeight="normal";
mtem.style.fontWeight="normal";
setTimeout("zoomer("+ycol+")", speed);
}
else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
if (m_copo[ycol]>100 && m_copo[ycol]<200) {
if (w3c) {
mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
mtmp.firstChild.nodeValue=String.fromCharCode(160);
mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
mtem.firstChild.nodeValue=String.fromCharCode(160);
}
else {
mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
mtmp.innerHTML=String.fromCharCode(160);
mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
mtem.innerHTML=String.fromCharCode(160);
}
setTimeout("zoomer("+ycol+")", speed);
}
}
// -->
</script>

<div id="matrix">maxxsoft.net</div>
 
görmüyon mu AAAA yazı matrix yazısı yazıyo üstünü okumuyon ondan sonra insanlardan bekliyon biş teşekkür beri et de hatanı telafi et ha bu arada ellerine sağlık kardeş bu matrix'i aldım
 
Sayfaya yukardan dökülür ve üstte merkeze ortalanir kalir ..

<title>SAYFAYA DÖKÜLEN YAZI</title>
<BODY aLink=#800000 link=#008080 onload=dynAnimation8() vLink=#FF0000 text="#FFFFFF" bgcolor="#FF0000">
<P align=center style="LEFT: 10000px! important; POSITION: relative! important" dynamicanimation8="dropWord"><BIG>Web
Sitemize Hoş Geldiniz!</big></P>
<P align=center style="LEFT: 10000px! important; POSITION: relative! important" dynamicanimation8="dropWord">
<b><SMALL><FONT face=Arial>HAZIRLAYAN VE SUNAN muratus Macho_M</FONT></SMALL></b></P>
<P align=left style="LEFT: 10000px! important; POSITION: relative! important" dynamicanimation8="dropWord"> </P>

<P> </P>
<P> </P>

<SCRIPT language=JavaScript FPTYPE="dynamicanimation8">
<!--
// www.maxxsoft.net
dynamicanimAttr = "dynamicanimation8"
animateElements = new Array()
currentElement = 0
speed = 0
stepsZoom = 8
stepsWord = 8
stepsFly = 12
stepsSpiral = 16
steps = stepsZoom
step = 0
outString = ""
function dynAnimation8()
{
var ms = navigator.appVersion.indexOf("MSIE")
ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4)
if(!ie4)
{
if((navigator.appName == "Netscape") &&
(parseInt(navigator.appVersion.substring(0, 1)) >= 4))
{
for (index=document.layers.length-1; index >= 0; index--)
{
layer=document.layers[index]
if (layer.left==10000)
layer.left=0
}
}
return
}
for (index=document.all.length-1; index >= document.body.sourceIndex; index--)
{
el = document.all[index]
animation = el.getAttribute(dynamicanimAttr, false)
if(null != animation)
{
if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
{
ih = el.innerHTML
outString = ""
i1 = 0
iend = ih.length
while(true)
{
i2 = startWord(ih, i1)
if(i2 == -1)
i2 = iend
outWord(ih, i1, i2, false, "")
if(i2 == iend)
break
i1 = i2
i2 = endWord(ih, i1)
if(i2 == -1)
i2 = iend
outWord(ih, i1, i2, true, animation)
if(i2 == iend)
break
i1 = i2
}
document.all[index].innerHTML = outString
document.all[index].style.posLeft = 0
document.all[index].setAttribute(dynamicanimAttr, null)
}
if(animation == "zoomIn" || animation == "zoomOut")
{
ih = el.innerHTML
outString = "<SPAN " + dynamicanimAttr + "=\"" + animation + "\" style=\"position: relative; left: 10000;\">"
outString += ih
outString += "</SPAN>"
document.all[index].innerHTML = outString
document.all[index].style.posLeft = 0
document.all[index].setAttribute(dynamicanimAttr, null)
}
}
}
i = 0
for (index=document.body.sourceIndex; index < document.all.length; index++)
{
el = document.all[index]
animation = el.getAttribute(dynamicanimAttr, false)
if (null != animation)
{
if(animation == "flyLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = 0
}
else if(animation == "flyRight")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = 0
}
else if(animation == "flyTop" || animation == "dropWord")
{
el.style.posLeft = 0
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyBottom")
{
el.style.posLeft = 0
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "flyTopLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyTopRight" || animation == "flyTopRightWord")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyBottomLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "flyBottomRight" || animation == "flyBottomRightWord")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "spiral")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "zoomIn")
{
el.style.posLeft = 10000
el.style.posTop = 0
}
else if(animation == "zoomOut")
{
el.style.posLeft = 10000
el.style.posTop = 0
}
else
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = 0
}
el.initLeft = el.style.posLeft
el.initTop = el.style.posTop
animateElements[i++] = el
}
}
window.setTimeout("animate();", speed)
}
function offsetLeft(el)
{
x = el.offsetLeft
for (e = el.offsetParent; e; e = e.offsetParent)
x += e.offsetLeft;
return x
}
function offsetTop(el)
{
y = el.offsetTop
for (e = el.offsetParent; e; e = e.offsetParent)
y += e.offsetTop;
return y
}
function startWord(ih, i)
{
for(tag = false; i < ih.length; i++)
{
c = ih.charAt(i)
if(c == '<')
tag = true
if(!tag)
return i
if(c == '>')
tag = false
}
return -1
}
function endWord(ih, i)
{
nonSpace = false
space = false
while(i < ih.length)
{
c = ih.charAt(i)
if(c != ' ')
nonSpace = true
if(nonSpace && c == ' ')
space = true
if(c == '<')
return i
if(space && c != ' ')
return i
i++
}
return -1
}
function outWord(ih, i1, i2, dyn, anim)
{
if(dyn)
outString += "<SPAN " + dynamicanimAttr + "=\"" + anim + "\" style=\"position: relative; left: 10000;\">"
outString += ih.substring(i1, i2)
if(dyn)
outString += "</SPAN>"
}
function animate()
{
el = animateElements[currentElement]
animation = el.getAttribute(dynamicanimAttr, false)
step++
if(animation == "spiral")
{
steps = stepsSpiral
v = step/steps
rf = 1.0 - v
t = v * 2.0*Math.PI
rx = Math.max(Math.abs(el.initLeft), 200)
ry = Math.max(Math.abs(el.initTop), 200)
el.style.posLeft = Math.ceil(-rf*Math.cos(t)*rx)
el.style.posTop = Math.ceil(-rf*Math.sin(t)*ry)
}
else if(animation == "zoomIn")
{
steps = stepsZoom
el.style.fontSize = Math.ceil(50+50*step/steps) + "%"
el.style.posLeft = 0
}
else if(animation == "zoomOut")
{
steps = stepsZoom
el.style.fontSize = Math.ceil(100+200*(steps-step)/steps) + "%"
el.style.posLeft = 0
}
else
{
steps = stepsFly
if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
steps = stepsWord
dl = el.initLeft / steps
dt = el.initTop / steps
el.style.posLeft = el.style.posLeft - dl
el.style.posTop = el.style.posTop - dt
}
if (step >= steps)
{
el.style.posLeft = 0
el.style.posTop = 0
currentElement++
step = 0
}
if(currentElement < animateElements.length)
window.setTimeout("animate();", speed)
}
//-->
</SCRIPT>
 
ALBAY istediğinizi alabilirsiniz kardeş biz zaten paylaşım için koyuyoruz :)
Başlıkta bi kaç dedim ama ipin ucunu kaçırmışım !
 
tatüs barda tarih saat ve yazılı olarak gün ..

<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1254">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title></title>
<!-- host baş -->
<!-- host son -->
</head>

<body bgcolor="#FFFFFF" text="#000000" link="#FF0000"
vlink="#000080" alink="#000080" onload="startclock();"
onload="startclock();" onload="startclock();">

<p align="center"> </p>
<script language="JavaScript">
<!-- Hide from old browsers
// Copyright © 1999 Doug Popeney
// Created by Doug Popeney ([email protected])
// JavaScript Made Easy!! - http://www.adresonline.gen.tr.tc

var timerID = null
var timerRunning = false
function MakeArray(size)
{
this.length = size;
for(var i = 1; i <= size; i++)
{
this = "";
}
return this;
}

function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false
}

function showtime () {
var now = new Date();
year = new String(now.getYear())
yearLen = year.length
year = year.split("")
year = year[yearLen - 2] + year[yearLen - 1]
var month = now.getMonth() + 1;
var date = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var day = now.getDay();

Day = new MakeArray(7);
Day[0]="SUN";
Day[1]="MON";
Day[2]="TUE";
Day[3]="WED";
Day[4]="THU";
Day[5]="FRI";
Day[6]="SAT";

var timeValue = "";
timeValue += (Day[day]) + " ";
timeValue += ((month < 10) ? " 0" : " ") + month + "-";
timeValue += date + "-" + year + " ";
timeValue += ((hours <= 12) ? hours : hours - 12);
timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
timeValue += (hours < 12) ? " AM" : " PM";
window.status = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true
}

function startclock () {
stopclock();
showtime()
}
// End Hiding -->
</script>

<p align="center"><a href="http://www.adresonline.gen.tr.tc"><font
color="#FF0000" size="2" face="Verdana"><strong>ADRES</strong></font><font
color="#0000FF" size="2" face="Verdana"><strong>ONLİNE</strong></font></a><font
color="#0000FF" size="2" face="Verdana"><strong> </strong></font></p>

<p align="center"><a href="http://www.adresonline.gen.tr.tc"><font
size="2" face="Verdana"><strong>GENÇLİĞİN YENİ ADRES PORTALI</strong></font></a></p>

<p align="center"><a href="http://www.adresonline.gen.tr.tc"><font
size="2" face="Verdana"><strong>UNLİMİTED - LİMİT YOK -
KAYNAK ÇOK</strong></font></a></p>

<p align="center"><font size="2" face="Verdana"><strong>STATUS
BARA BAKINIZ...</strong></font></p>
</body>
</html>
 
Geri
Üst