كاته
اليوم جايب لكم مجموعة من الأكواد الجاهزة اللي راح تساعدكم في تصميم المواقع بلغة html وأروا أن يستفيد الجميع منها :-
أكواد الhtml
1. جعل الصورة او الكلمة او جملة تتحرك
<html>
<head>
<tilte>
<span lang="ar-sa">شبيه الريح 2002</span>
</title>
</head>
<body>
<marquee direction="right">هاااااااااااااي</marquee>
يمكن إضافة خلفية لكلمة او كبر خطها نوعها و يمكن تحريكها بأشكالم مختلفة
لوضع خلفية بلون <marquee background="red">جربه</marquee>
<marquee <font color="red" direction="right">ان شاء الله حلو</marquee>
ملاحظة يمكن كتابة جميع هؤلاء داخل الكود
<marquee <font color="red">باااااااااااااااي</marquee>
2.كود زرين للامام وللخلف
<form method="post">
<input type="button"value="للخلف" onClick="gotoHist(-1)">
<input type="button" value="للامام" onClick="gotoHist(1)">
</form>
3. رسالة تظهر للزائر عندما يدخل لصفحتك
<SCRIPT LANGUAGE="JavaScript">
<!--
window.alert("مرحبا بكم مع تحيات شبيه الريح 2002 بس ")
// -->
</SCRIPT>
4. كود طلب ترشيح للموقع
<script language="JavaScript">
<!-- The JavaScript Source!! <a href="http://faam.8m.com.">
function vote () {
vote4alnadeem=window.open("http://www.arank.com/cgi-bin/rank/rankem.cgi?action=in&id=hamad999");
} function cancel () {}
if (confirm("هل ترشحنى لافضل مائه موقع عربى")) { vote();
} else cancel()
// --></script>
5. كود لعداد رائع تستطيع وضعه في جميع صفحات مع ضرورة تغيير العنوان في كل مرة
<img src="http://cgibin.erols.com/cgi-bin/Count.cgi?df=غير العنوان فى كل مره &ft=6&tr=N&dd=B&md=8">
6. كود الشريط المتحرك
<p align="center">
<marquee bgcolor="#FFFFFF" width="468">شبيه الريح 2002</marquee></p>
7. كود لإجبار المتصفح على عدم الاحتفاظ بصفحة مؤقتة و طلب الصفحة من الموقع فى كل مرة تزور فيها الصفحة.
<META http-equiv="Pragma" content="no-cache">
يتابع ... ::3::
8. [gl]ضع خدمة القاموس (انجليزى-عربى) (عربى-انجليزى) فى موقعك[/gl]
<TABLE align=center cellSpacing=1 cellPadding=1 bgColor=#bbbbbb width=10% border=0>
<TD width=100% bgcolor=cccccc>
<FONT face='Verdana' color=#000000 size=2>Dictionary</font>
</td>
<TR>
<TD width=100% bgcolor=cccccc>
<Form Name='Search' method='POST' action='http://vbzoom.com/dictionary/index.php'>
<FONT face='Verdana' color=#000000 size=1>
<INPUT type='text' maxLength=50 size=20 name=FindWord>
<BR>
<input type=radio name=SearchMothod value=0 checked><B> Start Of Field </B>
<BR>
<input type=radio name=SearchMothod value=1><B> Any Part Of Field</B>
<BR>
<INPUT type=submit value='Find'>
</TD>
</form>
</TABLE>
9.[gl]كود جالب اخبار جريدة الرياض[/gl]
<iframe
src="http://server1.alriyadh.com.sa/express/sitenews.asp?site=4852"
width=250 height=25 frameborder=0 scrolling=no></iframe>
10. [gl]لتغيير لون شريط التمرير في صفحة موقعك[/gl]
<STYLE>BODY {
SCROLLBAR-FACE-COLOR:
#808080; SCROLLBAR-HIGHLIGHT-COLOR: #eabc5a; SCROLLBAR-SHADOW-COLOR:
#eabc5a; SCROLLBAR-3DLIGHT-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR:
#000000; SCROLLBAR-TRACK-COLOR: #c0c0c0; SCROLLBAR-DARKSHADOW-COLOR:
#eabc5a
}
</STYLE>
11. [gl]اليوم والتاريخ بصفحتك[/gl]
<script LANGUAGE="JavaScript">
<!-- This script and many more are available online from -->
<!-- The JavaScript Source!!
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] -->
<!-- Begin
var day="";
var month="";
var myweekday="";
var year="";
mydate = new Date();
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
weekday= myweekday;
myyear= mydate.getYear();
year = myyear
if(myday == 0)
day = " الأحد, "
else if(myday == 1)
day = " الأثنين, "
else if(myday == 2)
day = " الثلاثاء, "
else if(myday == 3)
day = " الاربعاء, "
else if(myday == 4)
day = " الخميس, "
else if(myday == 5)
day = " الجمعة, "
else if(myday == 6)
day = " السبت, "
if(mymonth == 0) {
month = "يناير "}
else if(mymonth ==1)
month = "فبراير "
else if(mymonth ==2)
month = "مارس "
else if(mymonth ==3)
month = "ابريل "
else if(mymonth ==4)
month = "مايو "
else if(mymonth ==5)
month = "يونيو "
else if(mymonth ==6)
month = "يوليو "
else if(mymonth ==7)
month = "اغسطس "
else if(mymonth ==
month = "سبتمبر "
else if(mymonth ==9)
month = "اكتوبر "
else if(mymonth ==10)
month = "نوفمبر "
else if(mymonth ==11)
month = "ديسمبر "
document.write("<b><font face=Arial size=3> " + day + " " + myweekday + " - " );
document.write(month + " - "+ year + "</font></b>");
// End -->
</script>
12. [gl]ارسل الموقع لصديق[/gl]
<!-- TWO STEPS TO INSTALL EMAIL THIS PAGE:
1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Ronnie T. Moore -->
<!-- Web Site: The JavaScript Source -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!!
[ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] -->
<!-- Begin
function initMail(form) {
text = "Check out this page: " + window.location;
form.message.value = "Hi" + form.sendto.value + " (" + form.to.value + "):\n\n"
+ text + "\n\nYour Friend,\n" + form.sendername.value + "(" + form.senderemail.value + ")";
return (form.to.value != "");
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<BODY>
<center>
<form
name=emailform method=post action="http://cgi.freedback.com/mail.pl"
target="_new" onSubmit="return initMail(this);">
<input type=hidden name=subject value="** Check Out This Site! **">
<input type=hidden name=message value="">
<table>
<tr><td
colspan=2 align=center><b><font color="#FF00FF">ارسل
الموقع لصيق</font></b></td></tr>
<tr><td><font
color="#FF00FF"><b>اسم
صديقك</b></font><b><font
color="#FF00FF">:</font></b></td><td>
<font color="#FF00FF"><b><input type=text name=sendto size="20"></b></font></td></tr>
<tr><td><b><font color="#FF00FF">بريد صديقك:</font></b></td><td>
<font color="#FF00FF"><b><input type=text name=to size="20"></b></font></td></tr>
<tr><td><b><font color="#FF00FF">اســــــــــمك:</font></b></td><td>
<font
color="#FF00FF"><b><input type=text name=sendername
size="20"></b></font></td></tr>
<tr><td><b><font color="#FF00FF">بــــــــــريدك:</font></b></td><td>
<font
color="#FF00FF"><b><input type=text name=senderemail
size="20"></b></font></td></tr>
<tr><td colspan=2 align=center><input type=submit value="Ok!"></td></tr>
</table>
</form>
</center>
<p><center>
<p><a href="http://www.geocities.com/reo2003_eg">موقع شبي الريح 2002</a></p>
</center><p>
<!-- Script Size: 1.63 KB -->
13. [gl]لمنع اعلانات النوافذ لمن يعاني من الاعلانات [/gl]
<!-- Start code //-->
<Script Language='Javascript'>
<!--
eval(unescape('%66%75%6E%63%74%69%6F%6E%20%6F%70%6 5%6E%20%28%29%20%7B%72%65%74%75%72%6E%20%74%72%75% 65%3B%7D'));
//-->
</Script>
14. [gl]نقل الماف من الصفحه الموده فيها الى صفحه ويب اخر.(heperlink)[/gl]
<meta http-equiv="Content-Language" content="en-us">
<a href="http://www.arabsgate.com"><span lang="ar-sa">أي كلمة هنا</span></a>
15. [gl]عمل قائمة منزلقة للموقع[/gl]
<form name="Jump">
<select name="Menu" onChange="location=document.Jump.Menu.options[document.Jump.Menu.selectedIndex].value;" value="GO">
<option value="http://www.geocities.com/reo2002_eg">الموقع</option>
<option value="http://www.geocities.com/mjsa2us/chatco.htm">الدردشة</option>
<option value="http://majednet.4t.com/java.htm">الجافا</option>
</select>
</form>
16. [gl]زر لتحرير الموقع [/gl]
<body>
<form><input type="BUTTON" VALUE="شاهد" onClick= 'window.location =
"view-source:" + window.location.href'>
</form>
</body>
17. [gl]كود محرك بحث شامل[/gl]
<script language="JavaScript"><!--
// START HIDE
var MAX_ENGINES = 35;
var tp='';
var tpp='';
var find = 'hunt';
var hold=0;
var hold2=0;
var gog=0;
var ap='';
function MakeArray(n) {
for (var i = 1; i <= n; i++) {
this[i] = 0;
}
this.maxlen = n;
this.len = 0;
return this;
}
var engs = new MakeArray(MAX_ENGINES);
function find_substring(needle, haystack) {
var i, needlen = needle.length, haylen = haystack.length;
for (i=0; i<=haylen-needlen; i++) {
if (needle == haystack.substring(i,i+needlen))
return i;
}
return false;
}
function Engine(name, opts, home, search) {
var gotcha = find_substring(find, search);
this.name = name;
this.opts = opts;
this.home = home;
this.pre_gotcha = search.substring(0,gotcha);
this.post_gotcha= search.substring(gotcha+find.length, search.length);
}
function Add(name, opts, home, search) {
engs.len++;
if (engs.len <= engs.maxlen) {
engs[engs.len] = new Engine(name, opts, home, search)
}
else {
alert ('Better increase MAX_ENGINES: ' + engs.Len + '>' + engs.maxlen)
}
}
function DisplayForm() {
document.writeln('<FORM Name=Gotchaform OnSubmit="HandleForm(this); return false">');
document.writeln('<strong></strong> <INPUT size=15 name="query">');
document.writeln('<strong></strong> <SELECT name="service">');
for (i=1; i <= engs.len; i++) {
document.writeln("<OPTION " + engs[i].opts + "> " + engs[i].name);
}
document.writeln('</SELECT> <input type=submit value="ابحث"><br>');
document.writeln('</FORM>');
document.Gotchaform.query.focus()
}
function HandleForm(form){
var i, newq="", oldq=form.query.value;
for (i=0; i<oldq.length; i++) { // compress [ ]+ into \+
var thischar = oldq.charAt(i);
if (thischar =="+")newq += "%2B";
else
if (thischar != ' ')
newq += thischar;
else if (lastchar != ' ')
newq += '+';
lastchar = thischar;
}
var eng = engs[1+form.service.selectedIndex];
// Window
search=window.open(newq
? eng.pre_gotcha + newq + eng.post_gotcha :
eng.home,"SmartSearch","scrollbars=yes,toolbar=yes
,location=yes,directorie
s=yes,status=yes,menubar=yes,resizable=yes,width=' 100%',hight='100%'");
}
Add("Alta
Vista","SELECTED","http://altavista.digital.com/","http://altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=d&q=hunt");
Add("Yahoo!","","http://www.yahoo.com/","http://search.yahoo.com/bin/search?p=hunt" );
Add("DejaNews","","http://www.dejanews.com/","http://search.dejanews.com/nph-dnquery.xp?query=hunt&defaultOp=AND&svcclass=dncur
rent&maxhits=25");
Add("HotBot","","http://www.search.hotbot.com","http://www.search.hotbot.com/search.html?MT=hunt&DC=25");
Add("Infoseek","","http://www.infoseek.com/Home?pg=Home.html&sv=A2","http://www.infoseek.com/Titles?qt=hunt&col=WW&sv=A2");
Add("Excite","","http://www.excite.com/","http://www.excite.com/search.gw?searchType=Concept&search=hunt&category=
default");
Add("Lycos","","http://www.lycos.com/","http://www.lycos.com/cgi-bin/pursuit?query=hunt&backlink=639");
Add("Magellan","","http://www.mckinley.com/","http://www.mckinley.com/extsearch.cgi?query=hunt");
Add("OpenText","","http://search.opentext.com","http://search.opentext.com/omw/simplesearch?SearchFor=hunt&mode=and");
Add("WebCrawler","","http://webcrawler.com/","http://webcrawler.com/cgi-bin/WebQuery?searchText=hunt&maxHits=25");
// Software
Add("ZDNet
Files","","http://www.zdnet.com/","http://www6.zdnet.com/cgi-bin/texis/swlib/hotfiles/search.html?Usrt=rel&Usrchtype=simple&Utext=hunt")
;
Add("Filez","","http://www.filez.com/","http://filez.com/cgi/filez.cgi?query=hunt&type=All+Files&hits=50&domain
=World&doit=Search/");
Add("Shareware.com","","http://www.shareware.com/","http://search.shareware.com/code/engine/Find?logop=and&cfrom=quick&orfile=True&hits=25&sea
rch=hunt&category=All-Categories");
Add("PC Gamer","","http://www.pcgame.com/","http://www.pcgame.com/finder/search.cgi?key=hunt");
// Denmark
DisplayForm();
// STOP HIDE
// --></script