CSS link with no underline
CSS link with no underline <!DOCTYPE html> <html> <head> <style> a { text-decoration: none; } </style> </head> <body> <p>A link with no underline: <a href="https://yaakdevelopers.blogspot.com">Yaak Developers</a></p> </body> </html>