--- id: 587d781b367417b2b2512abb title: Create a Horizontal Line Using the hr Element challengeType: 0 videoUrl: '' localeTitle: إنشاء خط أفقي باستخدام عنصر hr --- ## Description
يمكنك استخدام علامة hr لإضافة خط أفقي عبر عرض عنصر محتواه. يمكن استخدام هذا لتعريف تغيير في الموضوع أو لفصل مجموعات المحتوى بشكل مرئي.
## Instructions
أضف علامة hr أسفل h4 التي تحتوي على عنوان البطاقة. ملحوظة
في HTML ، hr هي علامة ذاتية الإغلاق ، وبالتالي لا تحتاج إلى علامة إغلاق منفصلة.
## Tests
```yml tests: - text: يجب أن تضيف الشفرة علامة hr إلى الترميز. testString: 'assert($("hr").length == 1, "Your code should add an hr tag to the markup.");' - text: يجب أن تأتي علامة hr بين العنوان والفقرة. testString: 'assert(code.match(/<\/h4>\s*?|\s*?\/>)\s*?

/gi), "The hr tag should come between the title and the paragraph.");' ```

## Challenge Seed
```html

GoogleAlphabet

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

```
## Solution
```js // solution required ```