Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style> div { outline: 5px solid green; /* Solid green outline */ padding: 20px; } </style> </head> <body> <div>This div has a green solid outline.</div> </body> </html>