تم صيانة المنتدي*** لا تغير فى سياسه من سياسات المنتدى اكتب ما تريد لان هذا حقك فى الكتابه عبر عن نفسك هذه ارائك الشخصيه ونحن هنا لاظهارها
جارى تحميل صندوق البحث لمنتدى الاقباط

العودة   منتدي منظمة أقباط الولايات المتحدة > المنتدى العربى > منتدى العلوم والتكنولوجيا
التّسجيل الأسئلة الشائعة التقويم

منتدى العلوم والتكنولوجيا يهتم هذا القسم بالانترنت و بالبرمجة والكمبيوتر و الموبايلات,معلومات عامة ..إستشارات ..كل ما هو جديد بالتكنولوجيا .....الخ

المشاركة في الموضوع
 
خيارات الموضوع طريقة العرض
  #1  
قديم 12-04-2006
الصورة الرمزية لـ Safnat_Fa3nash007
Safnat_Fa3nash007 Safnat_Fa3nash007 غير متصل
Gold User
 
تاريخ التّسجيل: May 2005
الإقامة: +++ في مصر القبطيه +++
المشاركات: 6,377
Safnat_Fa3nash007 is on a distinguished road
+++

Colors
Symbols
Beginning Tag Ending Tag De******ion
<P> </P> Paragraph; Text inside these two tags will be formatted as a paragraph, with a double-space between paragraphs.
<BR> None Break Return; Inserts a single line break.
<HR> None Horizontal Rule; Inserts a horizontal line.
<H1> </H1> Header; Text between these tags is larger than normal. There are 6 sizes, H1 through H6, H1 being the largest.
<CENTER> </CENTER> Center; Centers all the content between the two tags.
<span style="font-weight:bold"> </span> Bold; bolds all text between the two tags.
<span style="font-style:italic"> </span> Italic; italicizes all text between the two tags.
<span style="text-decoration:underline"> </span> Underline; underlines all text between the two tags.
<span style="color:#FF0000"> </span> Color; changes color of all text between the two tags to the HEX color defined (red, in this example).
<span style="font-family:verdana"> </span> Font Type; changes the font of all text between the two tags to the font defined (verdana, in this example).
<span style="font-size:10pt"> or <span style="font-size:10px"> </span> Font Size; changes the font size of all text between the two tags to the size defined (10 point or 10 pixel, in this example).

HEAD TAGS
Head tags include all code between <head> and </head>. Head tags are placed after <HTML> at the top of the page and are not visible when the web page is viewed. Head tags include such tags as <TITLE>, <META>, <STYLE>, and some <******> tags. If you are using a stylesheet, you will include a <LINK> tag pointing to the stylesheet's location on the Web. A typical <head> tag might look like this:
<HEAD>
<TITLE>WebHelps FREE Web Site Hosting, Web Tool Add-Ons, and Online Communities</TITLE>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META name="DE******ION" content="FREE website hosting with tons of customizable web tool add ons.">
<META name="KEYWORDS" content="free,website,web,site,hosting,web hosting,online community">
<meta name="revisit" content="10 days">
<META name="robots" content="index,follow">
<LINK href="http://webhelps.com/webhelps.css" type=text/css rel=stylesheet>
<****** language="Java******1.2" type="text/java******"></******>
<STYLE>
.style4 {color: #cccccc; font-size: 9px; font-family: tahoma;}
#text {font-size: 10pt; color: black; font-family: tahoma}
</STYLE>
</HEAD>

BODY TAG
The Body includes all code between <body> and </body>, which includes the page content displayed by the browser. <BODY> is placed after </HEAD> at the top of the page. </BODY> is placed before </HTML> at the bottom of the page. Neither <body> nor </body> is visible when the web page is viewed.
Typically, the <BODY> tag will include instructions to the browser on what to display for the page's background, links, fonts, and margins. A typical <body> tag might look like this:
<BODY BGCOLOR="#FFFFFF" background="image.gif" link="#0aa0b6" alink="#787878" vlink="#ff7f00" LEFTMARGIN=0 bottommargin=0 rightmargin=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 style="font-family:verdana">

FONTS
<FONT SIZE=2>text size 1 to 8</FONT>
<FONT COLOR="Blue">blue text<</FONT>
<FONT FACE="arial">arial text</FONT>
<FONT FACE="arial" COLOR="blue" SIZE=2>blue arial text</FONT>
The <FONT> tag is being phased out. At some point, browsers will no longer support it. Therefore, you should start learning and using <SPAN> and <STYLE> tags. There are many great reference sites on the Web, if you do a search for "learn style tags" and "learn span tags". A site we recommend is htmlgoodies.com for lots of code examples. Below is the correct way to code the preceding font examples:
<span style="font-size:10pt">text size 1pt to 100pt</span>
<span style="color:blue">blue text</span>
<span style="font-family:arial">arial text</span>
<span style="font-size:10pt; color:blue; font-family:arial">blue arial text</span>
<span style="font-style:italic">italic text</span>
<span style="font-weight:bold">bold text</span>
<span style="font-size:12pt; color:#FF0000; font-family:verdana; font-weight:bold; font-style:italic">big red bold italic verdana text</span>
LINKS
To link to another page on the same website, use:
<A HREF="some-page.html">Link Text Here</A>
To link to a page somewhere on the Web, use:
<A HREF="http://www.some_site.com/some-page.html">Link Text Here</A>

To have your link open in a separate window, use:
<A HREF="some-page.html" target="_blank">Link Text Here</A>

To create an email link, use:
<A HREF="mailto:username@theirdomain.com">Email Us</A>

IMAGES
To display an image that is already displaying on another web site, use:
<IMG SRC="http://www.some_site.com/some-image.gif">
To display an image uploaded to your free web space with Site Maker, use:
<IMG SRC="http://www.hostinghelps.com/Username/some-image.gif">

ALIGNMENT
Vertical Alignment:
<td valign=top> - aligns everything to the top inside the column
<td valign=bottom> - aligns everything to the bottom inside the column
<td valign=middle> - centers everything vertically inside the column
Horizontal Alignment:
<td align=left> - aligns everything to the left inside the column
<td align=right> - aligns everything to the right inside the column
<td align=center> - centers everything horizontally inside the column
__________________
+


لا تخف من الباطل ... ان ينتشر او ينتصر .... إن الباطل لا بد أن يهزم امام صمود الحق مهما طال به الزمن .... وكل جليات له داهود ينتظره وينتصر عليه
"بإسم رب القوات"
(قداسة البابا شينوده الثالث )


الرد مع إقتباس
  #2  
قديم 12-04-2006
الصورة الرمزية لـ Safnat_Fa3nash007
Safnat_Fa3nash007 Safnat_Fa3nash007 غير متصل
Gold User
 
تاريخ التّسجيل: May 2005
الإقامة: +++ في مصر القبطيه +++
المشاركات: 6,377
Safnat_Fa3nash007 is on a distinguished road
+++


الموقع فيوا حجات حلوه للي عايز يستفيد في عمل المواقع ......











بس انا بدور على حاجه محدده فيا ريت تساعدوني , لاني عايزها ضروري , ولي هي كود الكتابه المتحركه على المواقع


سلام رب المجد معاكوا
اخوكوا الصغير 007
__________________
+


لا تخف من الباطل ... ان ينتشر او ينتصر .... إن الباطل لا بد أن يهزم امام صمود الحق مهما طال به الزمن .... وكل جليات له داهود ينتظره وينتصر عليه
"بإسم رب القوات"
(قداسة البابا شينوده الثالث )



آخر تعديل بواسطة Safnat_Fa3nash007 ، 12-04-2006 الساعة 07:02 AM السبب: +++
الرد مع إقتباس
  #3  
قديم 12-04-2006
الصورة الرمزية لـ makakola
makakola makakola غير متصل
Moderator
 
تاريخ التّسجيل: Jan 2005
المشاركات: 6,270
makakola is on a distinguished road
أخى الحبيب صفنات

أسف للتأخر عليك

خذ الصفحة دى
http://www.alsairafy.com/java.html

حتلاقى فيها طلبك وحاجات تانى حلوة كمان ممكن تفيدك، وحأبحثلك عن المزيد

وأنا على إستعداد لمساعدتك لو أحببت
__________________
لم اكتم عدلك في وسط قلبي تكلمت بامانتك وخلاصك لم اخف رحمتك وحقك عن الجماعة العظيمة اما انت يا رب فلا تمنع رأفتك عني تنصرني رحمتك وحقك دائما
الرد مع إقتباس
  #4  
قديم 12-04-2006
الصورة الرمزية لـ makakola
makakola makakola غير متصل
Moderator
 
تاريخ التّسجيل: Jan 2005
المشاركات: 6,270
makakola is on a distinguished road
خذ ده كمان يا صفنات
http://soft.vip600.com/modules.php?name=Java
__________________
لم اكتم عدلك في وسط قلبي تكلمت بامانتك وخلاصك لم اخف رحمتك وحقك عن الجماعة العظيمة اما انت يا رب فلا تمنع رأفتك عني تنصرني رحمتك وحقك دائما
الرد مع إقتباس
  #5  
قديم 12-04-2006
الصورة الرمزية لـ InnerPeace
InnerPeace InnerPeace غير متصل
Gold User
 
تاريخ التّسجيل: Oct 2005
المشاركات: 315
InnerPeace is on a distinguished road
مش عارفة ياصفنات انا فهمت صح ولا لأ
عموما شوف الاكواد دى

<MARQUEE behavior=alternate>Text</MARQUEE>
<MARQUEE width=75%>Text</MARQUEE>
<MARQUEE direction=right>Text</MARQUEE>
<MARQUEE direction=left>Text</MARQUEE>
<MARQUEE scrollamount=50 scrolldelay=500>Text</MARQUEE>
__________________
لا تضلوا. لا زناة ولا عبدة اوثان ولا فاسقون ولا سارقون ولا طماعون ولا سيكرون يرثون ملكوت الله (1 كورنثوس 6: 9، 10)
الرد مع إقتباس
  #6  
قديم 12-04-2006
الصورة الرمزية لـ Safnat_Fa3nash007
Safnat_Fa3nash007 Safnat_Fa3nash007 غير متصل
Gold User
 
تاريخ التّسجيل: May 2005
الإقامة: +++ في مصر القبطيه +++
المشاركات: 6,377
Safnat_Fa3nash007 is on a distinguished road
+++

اخوتي واخواتي الاعزاء


كفيتم ووفيتم


جاري التجريب

وانشاء الله اردلكوا اياها بالافراح والليالي الملاح

اخوكوا 007
__________________
+


لا تخف من الباطل ... ان ينتشر او ينتصر .... إن الباطل لا بد أن يهزم امام صمود الحق مهما طال به الزمن .... وكل جليات له داهود ينتظره وينتصر عليه
"بإسم رب القوات"
(قداسة البابا شينوده الثالث )


الرد مع إقتباس
المشاركة في الموضوع


عدد الأعضاء الذي يتصفحون هذا الموضوع : 1 (0 عضو و 1 ضيف)
 

قوانين المشاركة
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is متاح
كود [IMG] متاح
كود HTML غير متاح

الإنتقال السريع


جميع الأوقات بتوقيت امريكا. الساعة الآن » 07:20 AM.


Powered by: vBulletin Version 3.8.6
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.

تـعـريب » منتدي الاقباط