So far, we've only changed the font family and the font size of HTML elements. There are many more things we can tinker with.

<html>
 <head>
  <style>.trailer {font-family: "Lucida Grande";font-size: 1.5em;font-style: italic;font-weight: bold;}</style>
 </head>
 <body><p class="trailer">I'm font of you because you're my type.</p>
 </body>
</html>
]]>

Sweet! While we can use font-style to italicize a font, we can set its weight, or thickness, with the font-weight property.

Psst: in addition to keywords like normal and bold, there are nine numeric values (100 to 900) that represent different weights.

May I be so bold as to suggest this is not the correct answer?