Now, any declaration we add will apply to all p elements on the webpage. Add the font-family: Papyrus; declaration.

<html> <head> <style> p { font-family: Papyrus; } </style> </head> <body> <h3> List of Pharaohs</h3> <p>Tutankhamun</p> <p>Cleopatra VII</p> <p>Ramses II</p> </body> </html>]]>

Make sure to pick font-family followed by :, and then Papyrus, ;.