منتديات تااام
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.


منتديات فسيح . ما فائدة القلم إذا لم يفتح فكرا . أو يضمد جرحا . أو يرقا دمعة . أو يطهر قلبا . أو يكشف زيفا . أو يبني صرح. أهلا وسهلا بك في منتدياتنا أهلا وسهلا بك ضيفنا الكريم، إذا كانت هذه زيارتك الأولى ... منتدى البرامج العام. هنا سيكون كل شيء خاص بك
 
الرئيسيةأحدث الصورالتسجيلدخول
بحـث
 
 

نتائج البحث
 
Rechercher بحث متقدم
المواضيع الأخيرة
»  كود يمنع النسخ
Creating an HTML Page  Icon_minitimeالثلاثاء أكتوبر 22, 2013 6:34 pm من طرف rohani abdo

» تحميل برنامج تعريف اي كارت شاشة لاي جهاز Download VGA Drive
Creating an HTML Page  Icon_minitimeالأربعاء يونيو 05, 2013 12:09 pm من طرف rohani abdo

» دورة تعلم HTML من البداية حتى الاحتراف
Creating an HTML Page  Icon_minitimeالثلاثاء مايو 07, 2013 2:06 pm من طرف rohani abdo

» تريد ان يكون لك منتداك الشخصي ؟ تفضل
Creating an HTML Page  Icon_minitimeالثلاثاء مايو 07, 2013 1:40 pm من طرف rohani abdo

» احصل على دومين ws مجاناااا
Creating an HTML Page  Icon_minitimeالثلاثاء مايو 07, 2013 1:14 pm من طرف rohani abdo

» تركيب قواعد البيانات Mysqldumper
Creating an HTML Page  Icon_minitimeالثلاثاء مايو 07, 2013 1:08 pm من طرف rohani abdo

»  نقل الدومن من سرفر لاخر
Creating an HTML Page  Icon_minitimeالثلاثاء مايو 07, 2013 12:30 pm من طرف rohani abdo

» مواقع الاستضافة العربيه المجانية
Creating an HTML Page  Icon_minitimeالثلاثاء مايو 07, 2013 12:14 pm من طرف rohani abdo

» تصميم موقع خاص بالتعريف عن الرسول صلى الله عليه وسلم
Creating an HTML Page  Icon_minitimeالثلاثاء مايو 07, 2013 12:06 pm من طرف rohani abdo

ازرار التصفُّح
 البوابة
 الصفحة الرئيسية
 قائمة الاعضاء
 البيانات الشخصية
 س .و .ج
 ابحـث
منتدى
التبادل الاعلاني
احداث منتدى مجاني
تسجيل صفحاتك المفضلة في مواقع خارجية
تسجيل صفحاتك المفضلة في مواقع خارجية reddit      

قم بحفض و مشاطرة الرابط منتديات تااام على موقع حفض الصفحات

قم بحفض و مشاطرة الرابط منتديات تااام على موقع حفض الصفحات
اضفنا للمفضلة
اضفنا للمفضلة

 

 Creating an HTML Page

اذهب الى الأسفل 
كاتب الموضوعرسالة
rohani abdo
Admin



عدد المساهمات : 485
تاريخ التسجيل : 21/02/2010
العمر : 47
الموقع : www.taaam-ma.ahlamontada.com

Creating an HTML Page  Empty
مُساهمةموضوع: Creating an HTML Page    Creating an HTML Page  Icon_minitimeالخميس مارس 08, 2012 3:22 pm

Creating an HTML Page



A web page is created using a language
called, Hypertext
Markup Language, better known as HTML Code. You can write your
own coding
within a plain text editor, such as Note Pad, or use an HTML
editor, which
will write the code for you.

HTML codes, also referred to as HTML tags, are enclosed by the
lesser than
(<) and greater than (>) brackets and may be written in
capital or
lower case letters.

The opening bracket is followed by an
element, which is a [color:0696=#0000C0 ! important][color:0696=#0000C0 ! important]browser command, and
ends
with the closing bracket.

<font size=2>

An element may also be followed
by
attributes, which are words
describing the
properties of the element, and further instruct the browser.

<font size=2>

Attributes are only contained in the opening HTML tags to the
right of the
element and are separated by a
space and followed
by an equal (=) sign.

The value follows the equal
sign and is enclosed
in quotes.

<font size=2>




Basic HTML Document Code Structure




Begin writing your HTML tags by creating
your document's
basic layout. Copy and paste this code into your text or HTML
editor.


<html>
<head>
<title>Your Page Title</title>
</head>
<body>

This area will contain everything that will be visible through a
web browser,
such as text and graphics. All of the information will be HTML
coded.

For a complete list of HTML codes, tags and examples, see the
HTML chart
below.

</body>
</html>


<html> - Begins your HTMLdocument.

<head> - Contains information about the page such
as the TITLE,
META tags for proper Search Engine indexing, STYLE tags, which
determine
the page layout, and JavaScript coding for special effects.

<title> - The TITLE of your
page. This will
be visible in the title bar of the viewers’ browser.

</title> - Closes the HTML <title> tag.

</head> - Closes the HTML <head> tag.

<body> - This is where you will begin writing your
document
and placing your HTML codes.

</body> - Closes the HTML <body> tag.

</html> - Closes the <html> tag.










How to Copy and Paste HTML Tags / Codes




To copy and paste the HTML tags / codes
from the HTML
chart below into the HTML of [color:0696=#0000C0 ! important][color:0696=#0000C0 ! important]your [color:0696=#0000C0 ! important]web [color:0696=#0000C0 ! important]page, place your mouse
pointer over
the beginning of the HTML code you would like to copy. Next,
click
and hold your left mouse button and drag your mouse over all the
HTML code
you would like to copy
(Example of highlighted
text
). Your HTML code should now be highlighted.
Go to "Edit"
- "Copy" on your web browser's toolbar and then place your
cursor within
your HTML code where you would like to place the code. Right
click on your
mouse and go to "Paste." Your HTML code should now be displaying
within your
HTML document.
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://taaam-ma.ahlamontada.com
 
Creating an HTML Page
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1
 مواضيع مماثلة
-
» تطبيقي html
» HTML Tags Chart
»  احلى اكواد xx html
»  اكواد html لاصحاب المواقع
» مجموعة مهمة من أكواد Html

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
منتديات تااام :: المنتديات التقنية :: الجـرافـيـكس و التـصـامـيم-
انتقل الى: