الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> body { color: gray; } h1 { color: cadetblue; } </style> </head> <body> <h1>CSS color</h1> <p>color is used to set the color of the text.</p> <p>Everything in the body have a gray color but header have cadetblue color.</p> </body> </html>