Podcast
Questions and Answers
ما هو الغرض الأساسي من لغة HTML؟
ما هو الغرض الأساسي من لغة HTML؟
- لإنشاء صفحات ويب ديناميكية
- لإنشاء هيكل estructure وเนื้อห CONTENT لصفحات الويب (correct)
- لإنشاء قاعدة بيانات على الويب
- لإنشاء تطبيقات مóbile
ما هو الفرق بين عنصرین BLOCK-LEVEL وINLINE في لغة HTML؟
ما هو الفرق بين عنصرین BLOCK-LEVEL وINLINE في لغة HTML؟
- ال_Block-level_ Elements هي عناصر خاصة بالtexts
- ال_Block-level_ Elements هي عناصر تحتل مساحة كاملة على الصفحة mientras que ال_Inline_ Elements تحتل مساحة محتوى فقط (correct)
- ال_Inline_ Elements هي عناصر خاصة بالlinks
- ال_Block-level_ Elements هي عناصر خاصة بالpictures
ما هو الغرض من استخدام الAttributes في لغة HTML؟
ما هو الغرض من استخدام الAttributes في لغة HTML؟
- لإضافة رابط إلى الصفحة
- لإضافة صورة إلى الصفحة
- لإضافة لون خلفي إلى الصفحة
- لإضافة معلومات إضافية عن العنصر (correct)
ما هو الهدف من استخدام عناصر semánticas في لغة HTML5؟
ما هو الهدف من استخدام عناصر semánticas في لغة HTML5؟
ما هو الاسم الذي يطلق على العنصر ``؟
ما هو الاسم الذي يطلق على العنصر ``؟
ما هو الهدف من استخدام عناصر HEADINGS في لغة HTML؟
ما هو الهدف من استخدام عناصر HEADINGS في لغة HTML؟
ما هو الفرق بين عناصر الlistsOrdered و الlistsUnordered في لغة HTML؟
ما هو الفرق بين عناصر الlistsOrdered و الlistsUnordered في لغة HTML؟
ما هو العنصر الذي يستخدم لإنشاء روابط في لغة HTML؟
ما هو العنصر الذي يستخدم لإنشاء روابط في لغة HTML؟
Study Notes
لغة HTML
Definition
- HTML (HyperText Markup Language) is a standard markup language used to create web pages.
- It is the backbone of a website, providing the structure and content that the web browser renders to the user.
Basic Structure
- HTML documents consist of a series of elements, represented by tags (<>).
- Tags are surrounded by angle brackets (<>) and usually come in pairs, with the opening tag preceding the content and the closing tag following the content.
- The basic structure of an HTML document includes:
- ``: declaration of the document type
- ``: root element of the document
- ``: contains metadata about the document
- ``: contains the content of the document
Elements
- HTML elements can be either:
- Block-level elements: occupy a block of space on the page (e.g.
<p>
,</p><div>
) - Inline elements: occupy only the space of their content (e.g.
<span>
,<a>
)
- Block-level elements: occupy a block of space on the page (e.g.
- Elements can have attributes, which provide additional information about the element (e.g.
href
in</a><a href="https://www.example.com">
)