Input
Output
<!DOCTYPE html> <html> <head> <style> p { text-decoration: underline; } a { text-decoration: none; color: blue; } a:hover { text-decoration: underline; } </style> </head> <body> <p>This paragraph has an underline decoration.</p> <a href="#">This link has no underline by default, but will have one on hover.</a> </body> </html>