Add the tag selectors in their correct position, so that the h1 rule sets the background color and the p rule sets the font family.

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

Make sure to pick h1, followed by p.