HTML CSS examples for CSS:Quiz
Set the color for links to "green".
<!DOCTYPE html> <html> <head> <style> a {<!-- ww w .j a va 2s . c om--> color: green; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p><a href="http://java2s.com">java2s.com</a></p> </body> </html>