HTML CSS examples for CSS:Quiz
Remove the underline from the link.
<!DOCTYPE html> <html> <head> <style> a {<!--from w w w . j a v a2 s. c om--> text-decoration: none; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p><a href="css_text.asp">CSS text tutorial</a></p> </body> </html>