CSS Text
<!DOCTYPE html> <html> <head> <style> a { text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <a href="#">Learn more</a> </body> </html>
<!DOCTYPE html> <html> <head> <style> a { text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <a href="#">Learn more</a> </body> </html>