--- id: 587d781c367417b2b2512ac3 title: Establece el font-weight para varios elementos de títulos challengeType: 0 videoUrl: 'https://scrimba.com/c/crVWRHq' forumTopicId: 301069 dashedName: set-the-font-weight-for-multiple-heading-elements --- # --description-- Se establece el `font-size` de cada etiqueta de título en el último desafío, aquí podrás ajustar el `font-weight`. La propiedad `font-weight` establece que tan gruesos o delgados son los caracteres en una sección de texto. # --instructions-- # --hints-- Tu código debe establecer la propiedad `font-weight` para la etiqueta `h1` en 800. ```js assert($('h1').css('font-weight') == '800'); ``` Tu código debe establecer la propiedad `font-weight` para la etiqueta `h2` en 600. ```js assert($('h2').css('font-weight') == '600'); ``` Tu código debe establecer la propiedad `font-weight` para la etiqueta `h3` en 500. ```js assert($('h3').css('font-weight') == '500'); ``` Tu código debe establecer la propiedad `font-weight` para la etiqueta `h4` en 400. ```js assert($('h4').css('font-weight') == '400'); ``` Tu código debe establecer la propiedad `font-weight` para la etiqueta `h5` en 300. ```js assert($('h5').css('font-weight') == '300'); ``` Tu código debe establecer la propiedad `font-weight` para la etiqueta `h6` en 200. ```js assert($('h6').css('font-weight') == '200'); ``` # --seed-- ## --seed-contents-- ```html

This is h1 text

This is h2 text

This is h3 text

This is h4 text

This is h5 text
This is h6 text
``` # --solutions-- ```html

This is h1 text

This is h2 text

This is h3 text

This is h4 text

This is h5 text
This is h6 text
```