Your colleague highlighted the word in the text in bold, but forgot to add the italic styling.
Add the appropriate style for the <span> tag

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE>
<html>
  <head>
    <title>Font style</title>
    <style>
      span {
        font-weight: bold;
      }
    </style>
  </head>
  <body>
    <p>The first version of <span>HTML</span> was written by Tim Berners-Lee in 1993.</p>
  </body>
</html>