--- id: 587d781b367417b2b2512abb title: Create a Horizontal Line Using the hr Element challengeType: 0 videoUrl: '' localeTitle: Criar uma linha horizontal usando o elemento hr --- ## Description
Você pode usar a tag hr para adicionar uma linha horizontal na largura de seu elemento contido. Isso pode ser usado para definir uma alteração no tópico ou para separar visualmente grupos de conteúdo.
## Instructions
Adicione uma tag hr abaixo do h4 que contém o título do cartão. Nota
Em HTML, hr é uma tag de fechamento automático e, portanto, não precisa de uma tag de fechamento separada.
## Tests
```yml tests: - text: Seu código deve adicionar uma tag hr à marcação. testString: 'assert($("hr").length == 1, "Your code should add an hr tag to the markup.");' - text: A tag hr deve estar entre o título e o parágrafo. 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 ```