HTML CSS examples for CSS:Quiz
Set "background-color: linen" for the page, using an internal style sheet.
<!DOCTYPE html> <html> <head> <style> body {<!-- ww w.j a va 2 s . c o m--> background-color: linen; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>