Build a Tech Conference Schedule Table - Step 9

Tell us what’s happening:

please help, it keeps saying i should have a second tr element in th tbody which i have done…

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Tech Conference 2025 Schedule</title>
</head>
<body>
  <h1>Tech Conference 2025 Schedule</h1>

  <table>
    <caption>Schedule by Track and Time</caption>

    <thead>
      <tr>
        <th scope="col">Time</th>
        <th scope="col">Track A</th>
        <th scope="col">Track B</th>
        <th scope="col">Track C</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <th scope="row">9:00 AM</th>
        <td>Keynote: Tech Future</td>
        <td>Intro to Web Dev</td>
        <td>UX for All</td>
      </tr>
<tr scope="row">10:00 AM</tr>

<!-- User Editable Region -->

      <td>Accessibility Deep Dive</td>
      <td>CSS for Beginners</td>
      <td>Inclusive Design Principles</td>

<!-- User Editable Region -->

    </tbody>
    
  </table>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36

Challenge Information:

Build a Tech Conference Schedule Table - Step 9

look at the difference between these two tr elements, maybe your second one is not exactly as it should be

Thank you , i didn’t add th element before