Input
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Blur Effect</title> <style> img { width: 300px; height: 200px; filter: blur(5px); /* Apply blur effect */ } </style> </head> <body> <img src="image.jpg" alt="Image with Blur Effect"> </body> </html>