Files
2018-10-16 21:32:40 +05:30

17 lines
767 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Introduction to HTML5 Elements
localeTitle: مقدمة إلى عناصر HTML5
---
## مقدمة إلى عناصر HTML5
إن لف عنصر HTML حول عنصر (عناصر) HTML الأخرى يعني وضع العنصر (العناصر) _الداخلي_ بعد علامة الفتح في الغلاف وقبل علامة الإغلاق الخاصة به.
المثال أدناه يمثل عنصر `h1` وعنصر `h4` ملفوفًا في عنصر `header` :
`<header>
<h1> Big title </h1>
<h4> Tiny subtitle </h4>
</header>
`
كما ترى ، يحتوي `header` على العناصر الأخرى التي تنتهي في نفس المستوى (ينتهي `h1` قبل بدء `h4` ويكون كلاهما متداخلين في `header` ).