<section id="description"> تعد الطبقات أنماطًا قابلة لإعادة الاستخدام يمكن إضافتها إلى عناصر HTML. في ما يلي مثال على تصنيف فئة CSS: <blockquote style=";text-align:right;direction:rtl"> <نمط> <br> .blue-text { <br> اللون الازرق؛ <br> } <br> </ النمط> </blockquote> يمكنك أن ترى أننا أنشأنا فئة CSS تسمى <code>blue-text</code> داخل علامة <code><style></code> . يمكنك تطبيق فئة إلى عنصر HTML مثل هذا: <code><h2 class="blue-text">CatPhotoApp</h2></code> لاحظ أنه في الخاص بك CSS <code>style</code> عنصر، أسماء فئة تبدأ بنقطة. في سمة فئة عناصر HTML ، لا يتضمن اسم الفئة الفترة. </section>
## Instructions
<section id="instructions"> داخل عنصر <code>style</code> الخاص بك ، قم بتغيير محدد <code>h2</code> إلى <code>.red-text</code> محدد <code>.red-text</code> بتحديث قيمة <code>blue</code> من <code>blue</code> إلى <code>red</code> . امنح عنصر <code>h2</code> عنصر السمة <code>class</code> بقيمة <code>'red-text'</code> . </section>
## Tests
<section id='tests'>
```yml
tests:
- text: يجب أن يكون عنصر <code>h2</code> باللون الأحمر.
testString: 'assert($("h2").css("color") === "rgb(255, 0, 0)", "Your <code>h2</code> element should be red.");'
- text: يجب أن يحتوي عنصر <code>h2</code> <code>red-text</code> للفئة.
testString: 'assert($("h2").hasClass("red-text"), "Your <code>h2</code> element should have the class <code>red-text</code>.");'
- text: يجب أن تعلن ورقة الأنماط الخاصة بك عن فئة <code>red-text</code> وأن يكون لونها أحمر.
testString: 'assert(code.match(/\.red-text\s*\{\s*color\s*:\s*red;\s*\}/g), "Your stylesheet should declare a <code>red-text</code> class and have its color set to red.");'
- text: 'لا تستخدم إعلانات نمط مضمن مثل <code>style="color: red"</code> في عنصر <code>h2</code> .'
testString: 'assert($("h2").attr("style") === undefined, "Do not use inline style declarations like <code>style="color: red"</code> in your <code>h2</code> element.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<style>
h2 {
color: blue;
}
</style>
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>