--- id: bad87fee1348bd9aedf08806 title: Change the Font Size of an Element challengeType: 0 videoUrl: 'https://scrimba.com/c/c3bvDc8' --- ## Description
Font size is controlled by the font-size CSS property, like this:
h1 {
  font-size: 30px;
}
## Instructions
Inside the same <style> tag that contains your red-text class, create an entry for p elements and set the font-size to 16 pixels (16px).
## Tests
```yml tests: - text: Between the style tags, give the p elements font-size of 16px. Browser and Text zoom should be at 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 ```