--- id: 587d781b367417b2b2512abb title: Create a Horizontal Line Using the hr Element challengeType: 0 videoUrl: 'https://scrimba.com/c/c3bR8t7' --- ## Description
You can use the hr tag to add a horizontal line across the width of its containing element. This can be used to define a change in topic or to visually separate groups of content.
## Instructions
Add an hr tag underneath the h4 which contains the card title. Note
In HTML, hr is a self-closing tag, and therefore doesn't need a separate closing tag.
## Tests
```yml tests: - text: Your code should add an hr tag to the markup. testString: assert($('hr').length == 1, 'Your code should add an hr tag to the markup.'); - text: The hr tag should come between the title and the paragraph. 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 ```