Input
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>!important Rule Example</title> <style> h1 { color: blue; } h1 { color: red !important; } </style> </head> <body> <h1>This H1 will be red because of !important</h1> </body> </html>