--- id: 587d781c367417b2b2512ac2 title: Set the font-size for Multiple Heading Elements challengeType: 0 videoUrl: '' localeTitle: Установите размер шрифта для нескольких элементов заголовка --- ## Description
Свойство font-size используется для указания того, насколько большой текст в данном элементе. Это правило может использоваться для нескольких элементов для создания визуальной согласованности текста на странице. В этой задаче вы установите значения для всех тегов h1 h6 чтобы сбалансировать размеры заголовков.
## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert($("h1").css("font-size") == "68px", "Your code should set the font-size property for the h1 tag to 68 pixels.");' - text: '' testString: 'assert($("h2").css("font-size") == "52px", "Your code should set the font-size property for the h2 tag to 52 pixels.");' - text: Ваш код должен установить свойство font-size для тега h3 до 40 пикселей. testString: 'assert($("h3").css("font-size") == "40px", "Your code should set the font-size property for the h3 tag to 40 pixels.");' - text: '' testString: 'assert($("h4").css("font-size") == "32px", "Your code should set the font-size property for the h4 tag to 32 pixels.");' - text: '' testString: 'assert($("h5").css("font-size") == "21px", "Your code should set the font-size property for the h5 tag to 21 pixels.");' - text: '' testString: 'assert($("h6").css("font-size") == "14px", "Your code should set the font-size property for the h6 tag to 14 pixels.");' ```
## Challenge Seed
```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
```
## Solution
```js // solution required ```