Home
HTML
HTML Link Colors
Example 3: HTML Link Colors
Run ❯❯
<!DOCTYPE html> <html> <head> <title>Remove Underline from Link Example</title> </head> <body> <h1>Remove Underline from Link</h1> <p>Below is a link with underline.</p> <a href="html-tutorial">HTML Tutorial</a> <p> Below is a link with no underline.</p> <a href="html-tutorial" style="text-decoration: none;">HTML Tutorial</a> </body> </html>