--- id: 587d781b367417b2b2512abb title: Create a Horizontal Line Using the hr Element challengeType: 0 videoUrl: https://scrimba.com/c/c3bR8t7 forumTopicId: 301049 localeTitle: Создание горизонтальной линии с использованием элемента hr --- ## Description
Вы можете использовать тег hr чтобы добавить горизонтальную линию по ширине содержащего ее элемента. Это можно использовать для определения изменения темы или для визуального разделения групп контента.
## Instructions
Добавьте hr тег под h4 который содержит название карты. Заметка
В HTML hr является самозакрывающимся тегом и поэтому не требует отдельного закрывающего тега.
## Tests
```yml tests: - text: Your code should add an hr tag to the markup. testString: assert($('hr').length == 1); - text: The hr tag should come between the title and the paragraph. testString: assert(code.match(/<\/h4>\s*?|\s*?\/>)\s*?

/gi)); ```

## Challenge Seed
```html

GoogleAlphabet

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

```
## Solution
```html

GoogleAlphabet


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

```