Online Html Editor

<!DOCTYPE html> <html> <head> <style> @media print { p { color: red; } } @media screen { p { color: blue; } } button { background-color: violet; padding: 5px; } </style> </head> <body> <h2> CSS @media Rule </h2> <p> On the screen, the text will appear in blue. </p> <p> When you open the print preview, the text will be displayed in red. </p> <p> Click on below button to see the effect when you print the page. </p> <button onclick="printPage()"> Print Page </button> <script> function printPage() { window.print(); } </script> </body> </html>