Add the declaration font-style: italic; to both the rule for h3 and the rule for p tags.

<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 pick font-style: italic;, followed by font-style: italic;.