HTML CSS examples for CSS:Quiz
Using font property: Set the <p> to "italic", "20px" and "Verdana".
<!DOCTYPE html> <html> <head> <style> p {<!-- ww w . jav a 2 s .co m--> font: italic 20px Verdana; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>