Add another declaration inside the p tags that sets the font style to italic.

<html> <head> <style> h3 { font-style: italic; } p { font-style: italic; } </style> </head> <body> <h3>Great places in Italy</h3> <p>Bari</p> <p>Rome</p> <p>Venice</p> </body> </html>]]>

Make sure to type font-style: italic;.