Your colleague has already connected the font, but something doesn’t look right.
Fix the font link to make it work, and set the fallback ‘serif’ family for all <p> tags.

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></title>
    <link rel="stylesheet" type="text/css" href="styles.css">
  </head>
  <body>
    <h1>Programming language</h1>
    <p>a set of rules, words, etc. that are used for writing computer programs</p>
  </body>
</html>

styles.css

@font-face {
    font-family: OpenSans;
    font-weight: 600;
    font-style: italic;
    src: url("./OpenSans-SemiBoldItalic.ttf") format('truetype');
}

p {
    font-family: OpenSans;
}