--- id: 587d781c367417b2b2512ac3 title: Set the font-weight for Multiple Heading Elements challengeType: 0 videoUrl: 'https://scrimba.com/c/crVWRHq' forumTopicId: 301069 dashedName: set-the-font-weight-for-multiple-heading-elements --- # --description-- You set the `font-size` of each heading tag in the last challenge, here you'll adjust the `font-weight`. The `font-weight` property sets how thick or thin characters are in a section of text. # --instructions-- # --hints-- Your code should set the `font-weight` property for the `h1` tag to 800. ```js assert($('h1').css('font-weight') == '800'); ``` Your code should set the `font-weight` property for the `h2` tag to 600. ```js assert($('h2').css('font-weight') == '600'); ``` Your code should set the `font-weight` property for the `h3` tag to 500. ```js assert($('h3').css('font-weight') == '500'); ``` Your code should set the `font-weight` property for the `h4` tag to 400. ```js assert($('h4').css('font-weight') == '400'); ``` Your code should set the `font-weight` property for the `h5` tag to 300. ```js assert($('h5').css('font-weight') == '300'); ``` Your code should set the `font-weight` property for the `h6` tag to 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
```