--- id: 587d781b367417b2b2512abb title: Crea una línea horizontal usando el elemento hr challengeType: 0 videoUrl: 'https://scrimba.com/c/c3bR8t7' forumTopicId: 301049 dashedName: create-a-horizontal-line-using-the-hr-element --- # --description-- Puedes 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 de tema o para separa grupos de contenido visualmente. # --instructions-- Agrega una etiqueta `hr` debajo de `h4` que contiene el título de la tarjeta. **Nota:** en HTML, la etiqueta `hr` se cierra sola, por lo tanto no necesita una etiqueta de cierre por separado. # --hints-- Tu código debe agregar una etiqueta `hr` al lenguaje de marcado. ```js assert($('hr').length == 1); ``` La etiqueta `hr` debe estar entre el título y el párrafo. ```js assert(code.match(/<\/h4>\s*?|\s*?\/>)\s*?

/gi)); ``` # --seed-- ## --seed-contents-- ```html

GoogleAlphabet

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

``` # --solutions-- ```html

GoogleAlphabet


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

```