--- id: 587d781c367417b2b2512ac2 title: Set the font-size for Multiple Heading Elements challengeType: 0 videoUrl: 'https://scrimba.com/c/cPpQNT3' forumTopicId: 301067 dashedName: set-the-font-size-for-multiple-heading-elements --- # --description-- The `font-size` property is used to specify how large the text is in a given element. This rule can be used for multiple elements to create visual consistency of text on a page. In this challenge, you'll set the values for all `h1` through `h6` tags to balance the heading sizes. # --instructions--

In the style tags, set the font-size of the:

# --hints-- Your code should set the `font-size` property for the `h1` tag to 68 pixels. ```js assert($('h1').css('font-size') == '68px'); ``` Your code should set the `font-size` property for the `h2` tag to 52 pixels. ```js assert($('h2').css('font-size') == '52px'); ``` Your code should set the `font-size` property for the `h3` tag to 40 pixels. ```js assert($('h3').css('font-size') == '40px'); ``` Your code should set the `font-size` property for the `h4` tag to 32 pixels. ```js assert($('h4').css('font-size') == '32px'); ``` Your code should set the `font-size` property for the `h5` tag to 21 pixels. ```js assert($('h5').css('font-size') == '21px'); ``` Your code should set the `font-size` property for the `h6` tag to 14 pixels. ```js const regex = /h6\s*\{\s*font-size\s*:\s*14px\s*(;\s*\}|\})/i; assert.strictEqual(true, regex.test(code)); ``` # --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
```