There are two fonts in the fonts folder - they need to be included in the styles.css file.

  • The font OpenSans-Regular.ttf should be connected with a weight value of 400 and normal style
  • The font OpenSans-LightItalic.ttf should be connected with a weight of 300 and italic style
  • The first font should be used for the <div> element, the second for the paragraph.

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>Website</title>
  </head>
  <body>
    <div>Website</div>
    <p>a set of pages of information on the internet about a particular subject, published by a single person or organization.</p>
  </body>
</html>