We need to refactor the code a little to make it semantically correct.
Existing tags need to be grouped into logical blocks for this to be semantically correct.
We also need to replace some of the tags with more appropriate ones.

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>
<html>
  <head>
    <title>Quotes of great</title>
    <style>
      * {
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      }
      p {
        font-size: 22px;
      }
      h2 {
        text-align: center;
      }
    </style>
  </head>
  <body>
    <h2>Nelson Mandela</h2>
    <p><strong>Nelson Mandela</strong> was a South African anti-apartheid revolutionary, political leader and philanthropist who served as President of South Africa from 1994 to 1999.</p>
    <p>"The greatest glory in living lies not in never falling, but in rising every time we fall."</p>
    <h2>Walt Disney</h2>
    <p><strong>Walt Disney</strong> was an American entrepreneur, animator, writer, voice actor, and film producer. </p>
    <p>"The way to get started is to quit talking and begin doing."</p>
  </body>
</html>