الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @media not print { p { color: brown; } } </style> </head> <body> <p>Text color is brown in all cases except when print the page.</p> <button onclick="window.print()">Print Page</button> </body> </html>