--- id: 587d781c367417b2b2512ac4 title: Set the font-size of Paragraph Text challengeType: 0 videoUrl: '' localeTitle: قم بتعيين حجم خط نص الفقرة --- ## Description
لا تقتصر خاصية font-size في CSS على العناوين ، بل يمكن تطبيقها على أي عنصر يحتوي على نص.
## Instructions
غيّر قيمة الخاصية font-size للفقرة إلى 16 بكسل لجعلها أكثر وضوحًا.
## Tests
```yml tests: - text: يجب أن يكون font-size علامة p الخاصة بك 16 بكسل. testString: 'assert($("p").css("font-size") == "16px", "Your p tag should have a font-size of 16 pixels.");' ```
## Challenge Seed
```html

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

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