From http://www.w3schools.com HTML 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 Don't Forget the End Tag HTML markup tags are usually called HTML tags HTML 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 tag Start and end tags are also called opening tags and closing tags Nested tag Don't Forget the End Tag
استخدام notepad نكتب جمل HTML على Notepad نقوم بتخزينها كالأتي ::::NAME.HTML
عناوين 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>