--- id: 587d781b367417b2b2512abb title: Create a Horizontal Line Using the hr Element challengeType: 0 videoUrl: '' localeTitle: Crear una línea horizontal utilizando el elemento hr --- ## Description
Puede usar la etiqueta hr para agregar una línea horizontal a través del ancho de su elemento contenedor. Esto se puede usar para definir un cambio en el tema o para separar visualmente grupos de contenido.
## Instructions
Agregue una etiqueta de hr debajo de la h4 que contiene el título de la tarjeta. Nota
En HTML, hr es una etiqueta de cierre automático, y por lo tanto no necesita una etiqueta de cierre separada.
## Tests
```yml tests: - text: Su código debe agregar una etiqueta de hr a la marca. testString: 'assert($("hr").length == 1, "Your code should add an hr tag to the markup.");' - text: La etiqueta hr debe aparecer entre el título y el párrafo. 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 ```