--- id: bad87fee1348bd9aedf08806 title: Change the Font Size of an Element challengeType: 0 videoUrl: '' localeTitle: تغيير حجم الخط لعنصر --- ## Description
يتم التحكم في font-size الخاصية CSS font-size ، كما يلي:
h1 {
حجم الخط: 30 بكسل
}
## Instructions undefined ## Tests
```yml tests: - text: بين علامات style ، p العناصر 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 ```