-`
+```html
+
+
+```
هذا العنصر مغلق ذاتيًا ، ولكن يجب أن تضيف علامة إغلاق صريحة لكي تكون وديًا للمحللات والألعاب.
- `
-
-`
+```html
+
+```
أيًا كان التنسيق الذي تختاره ، سيؤدي إلى إنشاء خط أفقي كما في [هذا الدرس](https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-horizontal-line-using-the-hr-element/) على [freeCodeCamp](https://www.freecodecamp.org/) . في ما يلي لقطة شاشة من هذا الدرس تظهر عنصر `hr` مضمّن في div.
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/add-a-negative-margin-to-an-element/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/add-a-negative-margin-to-an-element/index.md
index 8ad3d2fc9a..61fc13e29f 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/add-a-negative-margin-to-an-element/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/add-a-negative-margin-to-an-element/index.md
@@ -12,10 +12,11 @@ localeTitle: أضف هامشًا سلبيًا إلى عنصر
على سبيل المثال ، لضبط هامش عنصر ما ليكون سلبيًا ، يمكنك استخدام:
- `.example {
- margin: -10px;
- }
-`
+```css
+.example {
+margin: -10px;
+}
+```
**لضبط حشو** استخدام **عنصر فردي** : الحشو: `-10` بكسل؛
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/add-different-margins-to-each-side-of-an-element/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/add-different-margins-to-each-side-of-an-element/index.md
index 82622877eb..b30495dd0f 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/add-different-margins-to-each-side-of-an-element/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/add-different-margins-to-each-side-of-an-element/index.md
@@ -6,24 +6,27 @@ localeTitle: إضافة هوامش مختلفة إلى كل جانب من الع
لضبط هوامش استخدام عنصر:
- `.example {
- margin: 10px;
- }
-`
+```css
+.example {
+ margin: 10px;
+}
+```
لتحديد أحجام الهوامش على عنصر من جانب كل جانب ، يمكننا استخدام "الهامش الأعلى" ، "الهامش - اليمين" ، "الهامش السفلي" ، و "الهامش الأيسر". يمكننا استخدام أي من هذه في تركيبة وبأي ترتيب. فمثلا:
- `.example {
- margin-top: 5px;
- margin-bottom: 0px;
- }
-`
+```css
+.example {
+ margin-top: 5px;
+ margin-bottom: 0px;
+}
+```
أو:
- `.example {
- margin-top: 20px;
- margin-left: 25px;
- margin-right: 5px;
- }
-`
\ No newline at end of file
+```css
+.example {
+ margin-top: 20px;
+ margin-left: 25px;
+ margin-right: 5px;
+}
+```
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/add-different-padding-to-each-side-of-an-element/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/add-different-padding-to-each-side-of-an-element/index.md
index 7b25b154f8..ca9e6ee33e 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/add-different-padding-to-each-side-of-an-element/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/add-different-padding-to-each-side-of-an-element/index.md
@@ -6,24 +6,27 @@ localeTitle: إضافة الحشو مختلفة لكل جانب من عنصر
لضبط حشو استخدام عنصر ما:
- `.example {
- padding: 10px;
- }
-`
+```css
+.example {
+ padding: 10px;
+}
+```
لتحديد أحجام الحشو على عنصر من جانب كل جانب ، يمكننا استخدام "padding-top" ، و "padding-right" ، و "padding-bottom" ، و "padding-left". يمكننا استخدام أي من هذه في تركيبة وبأي ترتيب. فمثلا:
- `.example {
- padding-top: 5px;
- padding-bottom: 0px;
- }
-`
+```css
+.example {
+ padding-top: 5px;
+ padding-bottom: 0px;
+}
+```
أو:
- `.example {
- padding-top: 20px;
- padding-left: 25px;
- padding-right: 5px;
- }
-`
\ No newline at end of file
+```css
+.example {
+ padding-top: 20px;
+ padding-left: 25px;
+ padding-right: 5px;
+}
+```
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/add-rounded-corners-with-border-radius/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/add-rounded-corners-with-border-radius/index.md
index 4650d51b31..82ef17a393 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/add-rounded-corners-with-border-radius/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/add-rounded-corners-with-border-radius/index.md
@@ -8,37 +8,42 @@ localeTitle: إضافة زوايا دائرية مع نصف قطر الحدود
لضبط إستدارة استخدام الزاوية:
- `.example {
- border-radius: 5px;
- }
-`
+```css
+.example {
+border-radius: 5px;
+}
+```
كلما زاد العدد ، كلما كانت الزاوية أكثر.
- `.example {
- border-radius: 20px;
- }
-`
+```css
+.example {
+border-radius: 20px;
+}
+```
باستخدام خاصية نصف قطر الحدود ، يمكننا تقريب أركان العنصر ، سواء كان ذلك يعني تقريب حد ، أو صورة خلفية ، أو لون تعبئة العنصر نفسه. ستلاحظ فقط الزوايا المستديرة الجديدة إذا كان هناك تغيير في اللون!
إذا قمت بتضمين رقم واحد فقط ، فسيتم تطبيق هذا نصف القطر على جميع الزوايا الأربع. إذا كنت تستخدم قيمتين ، ينطبق الأول على الزاويتين اليمنى العلوية والسفلية اليمنى بينما ينطبق الثاني على اليمين العلوي والسفلي الأيسر.
- `.exampleTwoValues {
- border-radius: 5px 10px;
- }
-`
+```css
+.exampleTwoValues {
+border-radius: 5px 10px;
+}
+```
إذا كنت تستخدم أربع قيم ، فسيتم تطبيق القيم على أعلى اليمين ، وأعلى اليسار ، وأسفل يمين ، وأسفل اليسار.
- `.exampleFourValues {
- border-radius: 5px 7px 10px 15px;
- }
-`
+```css
+.exampleFourValues {
+border-radius: 5px 7px 10px 15px;
+}
+```
إذا كنت تستخدم ثلاث قيم ، فسيتم تطبيق الأول على أعلى اليسار ، والثاني ينطبق على اليمين العلوي AND السفلي الأيسر ، والثالث ينطبق على أسفل اليمين.
- `.exampleThreeValues {
- border-radius: 5px 10px 15px;
- }
-`
\ No newline at end of file
+```css
+.exampleThreeValues {
+border-radius: 5px 10px 15px;
+}
+```
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-margin-of-an-element/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-margin-of-an-element/index.md
index 872d4f178d..4c39b835c2 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-margin-of-an-element/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-margin-of-an-element/index.md
@@ -12,8 +12,9 @@ localeTitle: ضبط هامش عنصر
هذا مثال على كيفية كتابته:
- `margin: 20px;
-`
+```css
+margin: 20px;
+```
يمكنك بسهولة تغيير أو تعديل `Margin` `Element` عن طريق تغيير القيمة العددية:
@@ -32,6 +33,6 @@ localeTitle: ضبط هامش عنصر
}
`
- `
-
Example
-`
\ No newline at end of file
+```html
+
Example
+```
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-padding-of-an-element/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-padding-of-an-element/index.md
index e05d0430ec..bcc261aa1c 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-padding-of-an-element/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/adjust-the-padding-of-an-element/index.md
@@ -12,23 +12,25 @@ localeTitle: ضبط الحشو من عنصر
لضبط Padding of Alement ، استخدم:
- `padding: 10px;
-`
+```css
+padding: 10px;
+```
لإنشاء Padding كطبقة لعنصر محدد ، استخدم:
- `.example-Padding {
- padding: 10px
- {
-`
+```css
+.example-Padding {
+ padding: 10px
+{
+```
لتطبيق هذا الصنف على الحقل المناسب ، استخدم:
- `
-
-
Example Text
-
-`
+```html
+
+
Example Text
+
+```
**لضبط Padding of Alement** ، استخدم:
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md
index 0e9d65c7ed..548ac7c1a6 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md
@@ -12,20 +12,22 @@ localeTitle: المتتالية CSS المتغيرات
### بناء الجملة
- `:root {
- --main-bkgnd-color: #00B8CB;
- }
-
- body {
- background-color: var(--main-bkgnd-color);
- font-family: 'Raleway', Helvetica, sans-serif;
- }
-`
+```css
+:root {
+ --main-bkgnd-color: #00B8CB;
+}
+
+body {
+ background-color: var(--main-bkgnd-color);
+ font-family: 'Raleway', Helvetica, sans-serif;
+}
+```
التصريح عن المتغير:
- `--custom-name: value
-`
+```css
+--custom-name: value
+```
باستخدام المتغير: `css var(--custom-name)`
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/change-the-color-of-text/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/change-the-color-of-text/index.md
index 0051c494ed..5d2fc86b21 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/change-the-color-of-text/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/change-the-color-of-text/index.md
@@ -8,10 +8,12 @@ localeTitle: تغيير لون النص
### مثال
- `color: red;
-`
+```
+color: red;
+```
## حل
- `
CatPhotoApp
-`
\ No newline at end of file
+```
+
CatPhotoApp
+```
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/give-a-background-color-to-a-div-element/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/give-a-background-color-to-a-div-element/index.md
index a171aeb031..0c4e46bb1a 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/give-a-background-color-to-a-div-element/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/give-a-background-color-to-a-div-element/index.md
@@ -20,11 +20,11 @@ localeTitle: إعطاء لون الخلفية لعنصر div
يمكنك بعد ذلك إضافة `class` إلى `div` :
- `
-
-
Example
-
-`
+```html
+
+
Example
+
+```
**الطريقة الثانية:**
@@ -34,10 +34,10 @@ localeTitle: إعطاء لون الخلفية لعنصر div
(وهذا يعني أنها `class` متكررة لكل عنصر `div` تقوم بإنشائه.)
- `
-
-`
\ No newline at end of file
+```html
+
+```
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/override-all-other-styles-by-using-important/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/override-all-other-styles-by-using-important/index.md
index f826ba7771..3600843cdc 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/override-all-other-styles-by-using-important/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/override-all-other-styles-by-using-important/index.md
@@ -15,8 +15,9 @@ localeTitle: تجاوز كافة الأنماط الأخرى باستخدام ه
3. إعلانات معرف
4. تصريحات الطبقة
- `Here is an example of how to write/apply !important:
-`
+```
+Here is an example of how to write/apply !important:
+```
المغلق اللون: أسود!
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/override-class-declarations-by-styling-id-attributes/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/override-class-declarations-by-styling-id-attributes/index.md
index 748ac96d8b..8169d8e5fd 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/override-class-declarations-by-styling-id-attributes/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/override-class-declarations-by-styling-id-attributes/index.md
@@ -10,22 +10,22 @@ localeTitle: تجاوز تعريفات الطبقة عن طريق تحديد س
مثال على ذلك هو:
- `
-
-
Example
-`
+```html
+
+
Example
+```
في المثال أعلاه ، سيكون نص `Example` باللون الأزرق لأن آخر صف تمت إضافته كان `blue-text` .
@@ -33,34 +33,34 @@ localeTitle: تجاوز تعريفات الطبقة عن طريق تحديد س
يمكنك إنشاء سمة `id` عن طريق إضافة الرمز `#` قبل اسم الفئة ، كما هو موضح أدناه:
- `
-
-`
+```html
+
+```
هذا مثال يوضح لك كيفية **تجاوز تعريفات Class بواسطة سمات معرف التصميم** :
- `
-
-
Example
-`
+```html
+
+
Example
+```
سيؤدي ذلك إلى جعل النص `Example` أخضر لأن سمة `id` ستحظى دائمًا بالأسبقية على تعريفات `class` .
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-css/override-styles-in-subsequent-css/index.md b/guide/arabic/certifications/responsive-web-design/basic-css/override-styles-in-subsequent-css/index.md
index 767505cf73..eb908feb15 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-css/override-styles-in-subsequent-css/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-css/override-styles-in-subsequent-css/index.md
@@ -10,19 +10,19 @@ localeTitle: تجاوز الأنماط في CSS لاحقة
فمثلا:
- `
-
-`
+```html
+
+```
الآن، عند إنشاء أي نص في `body` ، وسوف يكون لون النص `purple` المسندة إليها.
@@ -30,21 +30,21 @@ localeTitle: تجاوز الأنماط في CSS لاحقة
باستخدام التنسيق أعلاه ، سيتجاوز النص أدناه لون الخط `purple` السابق `purple` `red` .
- `
-
Example
-`
+```html
+
Example
+```
عندما تريد إضافة عدة فئات ، يمكنك استخدام هذا التنسيق:
- `
-
Example
-`
+```html
+
Example
+```
يمكنك الآن إضافة الفئة الأخيرة التي تم إنشاؤها أعلاه ( `"blue-text"` ) إلى نفس المثال أعلاه لمشاهدة النتائج.
- `
-
Example
-`
+```html
+
Example
+```
سيؤدي ذلك تلقائيًا إلى اختيار الفصل الأخير الذي تم إنشاؤه في قسم الأنماط ، والذي كان في هذه الحالة هو `"blue-text"` .
@@ -52,9 +52,9 @@ localeTitle: تجاوز الأنماط في CSS لاحقة
لذلك ، على سبيل المثال:
- `
-
Example
-`
+```html
+
Example
+```
سيظل هذا يعرض لون خط `blue` بسبب الترتيب في قسم الأنماط.
diff --git a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form/index.md b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form/index.md
index 13caea23dd..0dd7a1d9c1 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form/index.md
@@ -9,12 +9,14 @@ localeTitle: إضافة زر إرسال إلى نموذج
1) تكون قيمة `submit` `type` السمة صالحة أيضًا داخل علامة `input` وستعرض زرًا له نفس السلوك تقريبًا ، ولكن هذه ليست العلامة التي تريد استخدامها في هذا التحدي.
- `
-`
+```
+
+```
إذا لم تحدد قيمة ، فسيحتوي الزر على قيمة افتراضية تم اختيارها من قِبل وكيل المستخدم (عادةً ما يكون هذا بمثابة "إرسال" أو "إرسال الاستعلام").
إذا كنت ترغب في تحديد قيمة مثل "إرسال طلب" ، فيمكنك إجراء ذلك على النحو التالي:
- `
-`
\ No newline at end of file
+```
+
+```
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/comment-out-html/index.md b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/comment-out-html/index.md
index a5004b2c63..ed7e731e50 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/comment-out-html/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/comment-out-html/index.md
@@ -8,8 +8,9 @@ localeTitle: تعليق من HTML
مثال:
- `
-`
+```
+
+```
subElement | وصف ---------- | ----------- `` | علامة الإغلاق
diff --git a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md
index 9661355ebd..b59da1bf43 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md
@@ -10,20 +10,22 @@ localeTitle: قم بإنشاء قائمة غير مرتبة بالعدادات
صيح:
- `
-
-
-
-`
+```
+
+
+
+
+```
غير صحيح:
- `
-
-
-
-
-
-`
+```
+
+
+
+
+
+
+```
حظا طيبا وفقك الله!
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/index.md b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/index.md
index dc7f557531..3dc7f9cff5 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/index.md
@@ -8,10 +8,11 @@ localeTitle: مقدمة إلى عناصر HTML5
المثال أدناه يمثل عنصر `h1` وعنصر `h4` ملفوفًا في عنصر `header` :
- `
-
Big title
-
Tiny subtitle
-
-`
+```
+
+
Big title
+
Tiny subtitle
+
+```
كما ترى ، يحتوي `header` على العناصر الأخرى التي تنتهي في نفس المستوى (ينتهي `h1` قبل بدء `h4` ويكون كلاهما متداخلين في `header` ).
\ No newline at end of file
diff --git a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/uncomment-html/index.md b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/uncomment-html/index.md
index 19f24219b5..b0e90f65a2 100644
--- a/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/uncomment-html/index.md
+++ b/guide/arabic/certifications/responsive-web-design/basic-html-and-html5/uncomment-html/index.md
@@ -6,12 +6,13 @@ localeTitle: Uncomment HTML
موضوع التعليق غالبًا ما يكون مربكًا بعض الشيء في البداية. انظر الى المثال:
- `
-`
+```
+
+```
يمكنك استخدام التعليق في الخط أيضا: `` وهنا!
@@ -21,19 +22,22 @@ localeTitle: Uncomment HTML
Uncomment تعني إخراج الأشياء من نص التعليق: لإزالة unicment عنصر h3 في الجملة التالية (التي تم التعليق عليها كلها):
- `
-`
+```
+
+```
سهل مثل:
- `
Comment subtle
-`
+```
+
Comment subtle
+```
لاحظ كيف تمت إضافة علامة تعليق إغلاق ( `-->` ) قبل عنصر HTML h3 لمطابقة علامة التعليق الافتتاحية في بداية الجملة وإضافة علامة تعليق افتتاحية ( `