Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, sans-serif; padding: 30px; } a { /* No underline by default */ text-decoration: none; color: darkred; font-weight: bold; transition: color 0.3s ease; } /* Underline only appears on hover */ a:hover { text-decoration: underline; color: crimson; } </style> </head> <body> <p>Hover over <a href="#">this link</a> to see the underline appear.</p> </body> </html>