Add ‘Times New Roman’ font to every element in the index.html file.
The font in the <h1> heading should be italic.

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>Algorithm</title>
  </head>
  <body>
    <h1>Algorithm definition</h1>
    <p>A set of mathematical instructions that must be followed in a fixed order</p>
    <p>That will help to calculate an answer to a mathematical problem</p>
    <a href="https://dictionary.cambridge.org/dictionary/english/algorithm">Read at Cambridge dictionary</a>
  </body>
</html>