freeCodeCamp/curriculum/challenges/arabic/01-responsive-web-design/basic-html-and-html5/comment-out-html.arabic.md

2.5 KiB

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08804 Comment out HTML 0 تعليق من HTML

Description

تذكر أنه لبدء التعليق ، تحتاج إلى استخدام <!-- وإنهاء تعليق ، تحتاج إلى استخدام --> هنا سوف تحتاج إلى إنهاء التعليق قبل بدء عنصر h2 الخاص بك.

Instructions

قم بالتعليق على عنصر h1 والعنصر p ، ولكن ليس عنصر h2 الخاص بك.

Tests

tests:
  - text: قم بالتعليق على عنصر <code>h1</code> بحيث لا يكون مرئيًا على صفحتك.
    testString: 'assert(($("h1").length === 0), "Comment out your <code>h1</code> element so that it is not visible on your page.");'
  - text: اترك عنصر <code>h2</code> مُعالج بحيث يكون مرئيًا على صفحتك.
    testString: 'assert(($("h2").length > 0), "Leave your <code>h2</code> element uncommented so that it is visible on your page.");'
  - text: قم بالتعليق على عنصر <code>p</code> الخاص بك بحيث لا يكون مرئيًا على صفحتك.
    testString: 'assert(($("p").length === 0), "Comment out your <code>p</code> element so that it is not visible on your page.");'
  - text: تأكد من إغلاق كل تعليقاتك باستخدام <code>--&gt;</code> .
    testString: 'assert(code.match(/[^fc]-->/g).length > 1, "Be sure to close each of your comments with <code>--&#62;</code>.");'
  - text: لا تقم بتغيير ترتيب <code>h1</code> <code>h2</code> أو <code>p</code> في التعليمة البرمجية.
    testString: 'assert((code.match(/<([a-z0-9]){1,2}>/g)[0]==="<h1>" && code.match(/<([a-z0-9]){1,2}>/g)[1]==="<h2>" && code.match(/<([a-z0-9]){1,2}>/g)[2]==="<p>") , "Do not change the order of the <code>h1</code> <code>h2</code> or <code>p</code> in the code.");'

Challenge Seed

<!--
<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
-->

Solution

// solution required