The font-style and font-weight properties can make the text of an element appear in italics or bold.

Set font-style to italic and font-weight to bold.

<html>
<head>
  <style>
p{
font-style: italic;
font-weight: bold;}
</style>
</head>
<body>
  <h1>Short Story</h1>
  <p>Bon bons wild adventure</p>
</body>
</html>]]>

Make sure to pick italic, and then bold.;