الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> body { background-color: lightblue; } h1 { background-color: burlywood; } p { background-color: darkgray; } </style> </head> <body> <h1>CSS background-color</h1> <p>color is used to set the color of the text.</p> <p>background-color is used to set the color of the background.</p> </body> </html>