The type and size of font make a big difference to the look of a webpage. We can change the size with font-size and font with font-family.

Set the font size to 15px and the font to "Papyrus" to see the changes.

<html>
<head>
<style>
p{
font-size: 15px;
font-family: "Papyrus";}
</style>
</head>
<body>
  <h1>AVATAR</h1>
  <p>A film by James Cameron</p>
</body>
</html>]]>

Make sure to pick 15px first and then "Papyrus".