Tribute Page - Descendant of #main error

Hi! I’ve searched up a bunch of old similar topics and still can’t find an answer. Looked through and tried to proof read a few times but can’t seem to figure out what’s wrong. Any ideas?

Error: Your #img-div , #image , #img-caption , #tribute-info , and #tribute-link should all be descendants of #main .

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="styles.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jojo Ahmed</title>
</head>

<main id="main">

 <header>
 <h1 id="title">Jojo Ahmed</h1>
<p>The Dopamine Machine
</p>
</header>
<div class="img-div" id="img-div">
 <img src="https://cdn.discordapp.com/attachments/591879829591293972/1172280500002508861/jojo.jpg?ex=655fbe4b&is=654d494b&hm=a0c52378ce17563d4c949f19ec9872ad5657e54291c9e3846eb570c7380f6ea3&" id="image" alt="Jojo Running">
<figcaption id="img-caption">
 <p id="img-caption">Jojo majestically running into battle with his best friend laying not too far behind</p>
      </div>
 <body id="tribute-info">
 <P>A time-line of Jojo's life and accomplishments so far:</p>
         <div class="timeline">
            <ul>
               <li>
                  <b>Febuary 28</b> 
                  <p>Sweet Jojo was born unto this earth and took his first breathe.</p>
               <li><b>Febuary 28</b></li>
               <p>Sweet Jojo was born unto this earth and took his first breathe.</p>
               <li><b>Febuary 28</b></li>
               <p>Sweet Jojo was born unto this earth and took his first breathe.</p>
               <li><b>Febuary 28</b></li>
               <p>Sweet Jojo was born unto this earth and took his first breathe.</p>
               <li><b>Febuary 28</b></li>
               <p>Sweet Jojo was born unto this earth and took his first breathe.</p>
               <li><b>Febuary 28</b></li>
               <p>Sweet Jojo was born unto this earth and took his first breathe.</p>
               <li><b>Febuary 28</b></li>
               <p>Sweet Jojo was born unto this earth and took his first breathe.</p>
            </ul>
         </div>
 <p>In addition, if you want to see into the day to day life of Jojo today, you can check out his <a href="https://www.instagram.com/jojodoodle__" target="_blank" id="tribute-link">Instagram</a></p>
      </body>
</main>

You put your <body> inside the main …

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.