freeCodeCamp/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/index.md

17 lines
767 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
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` ).