--- id: bad87fee1348bd9aedf08806 title: Change the Font Size of an Element challengeType: 0 videoUrl: '' localeTitle: Изменение размера шрифта элемента --- ## Description
Размер шрифта контролируется свойством CSS font-size , например:
h1 {
font-size: 30 px;
}
## Instructions
Внутри тега <style>, который уже содержит класс red-text, создайте правило для p элементов и установите font-size 16 пикселей ( 16px ).
## Tests
```yml tests: - text: Между тегами style дайте p элементам font-size 16px . Увеличение браузера и текста должно составлять 100%. testString: 'assert(code.match(/p\s*{\s*font-size\s*:\s*16\s*px\s*;\s*}/i), "Between the style tags, give the p elements font-size of 16px. Browser and Text zoom should be at 100%.");' ```
## Challenge Seed
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


```
## Solution
```js // solution required ```