Podcast
Questions and Answers
ما هو الغرض الأساسي من لغة HTML؟
ما هو الغرض الأساسي من لغة HTML؟
ما هو الفرق بين عنصرین BLOCK-LEVEL وINLINE في لغة HTML؟
ما هو الفرق بين عنصرین BLOCK-LEVEL وINLINE في لغة HTML؟
ما هو الغرض من استخدام الAttributes في لغة HTML؟
ما هو الغرض من استخدام الAttributes في لغة HTML؟
ما هو الهدف من استخدام عناصر semánticas في لغة HTML5؟
ما هو الهدف من استخدام عناصر semánticas في لغة HTML5؟
Signup and view all the answers
ما هو الاسم الذي يطلق على العنصر ``؟
ما هو الاسم الذي يطلق على العنصر ``؟
Signup and view all the answers
ما هو الهدف من استخدام عناصر HEADINGS في لغة HTML؟
ما هو الهدف من استخدام عناصر HEADINGS في لغة HTML؟
Signup and view all the answers
ما هو الفرق بين عناصر الlistsOrdered و الlistsUnordered في لغة HTML؟
ما هو الفرق بين عناصر الlistsOrdered و الlistsUnordered في لغة HTML؟
Signup and view all the answers
ما هو العنصر الذي يستخدم لإنشاء روابط في لغة HTML؟
ما هو العنصر الذي يستخدم لإنشاء روابط في لغة HTML؟
Signup and view all the answers
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">
)