Build a Tech Conference Schedule Table - Step 12

Tell us what’s happening:

For step 12 I copy/pasted the tR code from the 10:30 Time and just changed the text appropriately. But for some reason the ARVA TD isn’ working. Please help.

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>
        <th scope="row">10:00 AM</th>
        <td>Accessibility Deep Dive</td>
        <td>CSS for Beginners</td>
        <td>Inclusive Design Principles</td>
      </tr>

      <tr>
        <th scope="row">11:00 AM</th>
        <td colspan="3">Break</td>
      </tr>


<!-- User Editable Region -->

      <tr>
        <th scope="row">11:30 AM</th>
        <td>AR/VR in Education.</td>
        <td>JavaScript Fundamentals</td>
        <td>Design Systems at Scale</td>
      </tr>
      

<!-- 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/145.0.0.0 Safari/537.36

Challenge Information:

Build a Tech Conference Schedule Table - Step 12
https://www.freecodecamp.org/learn/responsive-web-design-v9/workshop-tech-conference-schedule/step-12hH

Try copy/pasting given strings to avoid typos.

You added an extra .

Thanks. I’m embarrassed that I missed such a simple thing.

1 Like

Be proud that you got the code right instead.

Everyone has suffered chasing a problem only to find a typo

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