diff --git a/curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/headline-with-the-h2-element.arabic.md b/curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/headline-with-the-h2-element.arabic.md index 6bf700ae46..f842f191dc 100644 --- a/curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/headline-with-the-h2-element.arabic.md +++ b/curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/headline-with-the-h2-element.arabic.md @@ -3,14 +3,14 @@ id: bad87fee1348bd9aedf0887a title: Headline with the h2 Element challengeType: 0 videoUrl: '' -localeTitle: العنوان مع عنصر h2 +localeTitle: العنوان مع العنصر h2 --- ## Description undefined ## Instructions -
إضافة علامة h2 تقول "CatPhotoApp" لإنشاء element HTML ثاني أسفل عنصر h1 "Hello World".
+
إضافة علامة h2 تقول "CatPhotoApp" لإنشاء element HTML ثاني أسفل العنصر h1 "Hello World".
## Tests
@@ -23,7 +23,7 @@ tests: testString: 'assert(code.match(/<\/h2>/g) && code.match(/<\/h2>/g).length === code.match(/

/g).length, "Make sure your h2 element has a closing tag.");' - text: '' testString: 'assert.isTrue((/cat(\s)?photo(\s)?app/gi).test($("h2").text()), "Your h2 element should have the text "CatPhotoApp".");' - - text: يجب أن يحتوي عنصر h1 على النص "Hello World". + - text: يجب أن يحتوي العنصر h1 على النص "Hello World". testString: 'assert.isTrue((/hello(\s)+world/gi).test($("h1").text()), "Your h1 element should have the text "Hello World".");' ```