From ://.

Post on 26-Mar-2015

226 views 2 download

Tags:

Transcript of From ://.

From http://www.w3schools.com

HTMLما هي لغة لغة لوصف صفحات الويب.

HTML stands for Hyper Text Markup Language

HTML is not a programming language, it is a markup language

HTML uses markup tags to describe web pages

Html tag HTML markup tags are usually called HTML tagsHTML tags are keywords surrounded by angle

brackets like <html>HTML tags normally come in pairs like <b> and

</b>The first tag in a pair is the start tag, the second

tag is the end tagStart and end tags are also called opening

tags and closing tagsNested tag

Don't Forget the End Tag

notepadاستخدام Notepad على HTMLنكتب جمل 1.NAME.HTMLنقوم بتخزينها كاألتي ::::2.

HTMLعناوين <h1>This is a heading</h1>

<h2>This is a heading</h2><h3>This is a heading</h3>

HTMLروابط <a href="http://www.google.com">This is a

link to google</a>

HTMLصور <img src=”عنوان+اسم الصورة" width="104"

height="142" />

و الخط و الفاصل في التعليقHTML<!-- This is a comment --><hr /><br> or <br />

Exercise :ما هو عمل كل من

Tag work<b><big><em><i><small><strong><center><u>

حجم و لون و نوع الخط<p style="font-family:verdana;font-

size:110%;color:green"> النص الكتابي </p>

لون خلفية الشاشة <body style="background-color:yellow;"><h2 style="background-color:red;">This is a

heading</h2><p style="background-color:green;">This is

a paragraph.</p>

الصورة كرابط<a href="default.asp"><img src=”اسم+عنوان الصورة" alt="HTML

tutorial" width="32" height="32" /></a>

رابط داخل الصفحة<a name="tips">Useful Tips Section</a><a href="#tips">Visit the Useful Tips

Section</a>

HTMLالجداول بلغة <table border="1"><tr>

<td>row 1, cell 1</td><td>row 1, cell 2</td></tr><tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr></table>

HTMLالقوائم بلغة <ul>

<li>Coffee</li><li>Milk</li></ul>

<ol><li>Coffee</li><li>Milk</li></ol>

<dl><dt>Coffee</dt><dd>- black hot drink</dd><dt>Milk</dt><dd>- white cold drink</dd></dl>