الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> /* 0-0-1 */ input {color: red;} /* 0-1-1 */ input[type=text] {color: blue;} /* 0-2-1 */ input[type=text]:focus {color: green;} </style> </head> <body> <input type="text" value="My color is blue"/> <p>On focus, input color will change to green.</p> </body> </html>