HTML CSS examples for CSS:Quiz
Show <p> elements as "italic" text.
<!DOCTYPE html> <html> <head> <style> p {<!--from w w w . j a va 2 s. com--> font-style: italic; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>