Help,line 30 from Doctype,is really a problematic

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Balance Sheet</title>
  <link rel="stylesheet" href="./styles.css">
</head>
<body>
  <main>
    <section>
      <h1>
        <span class="flex">
          <span>AcmeWidgetCorp</span>
          <span>Balance Sheet</span>
        </span>
      </h1>
      <div id="years" aria-hidden="true">
        <span span class="sr-only year"  class="year">2019</span>
        <span span class="sr-only year" class="year">2020</span>
        <span span class="sr-only year" class="year">2021</span>
      </div>
      <div class="table-wrap">
        <table>
          <caption>Assets</caption>
          <thead>
            <tr>
              <td></td>
              <th><span class="sr-only year">2019</span></th>
              <th><span class="sr-only year">2020</span></th>
              <th><span  class="current">2021</span></th><!-- this is the line that is the problem-->
            </tr>
          </thead>
          <tbody>
          </tbody>
        </table>
        <table>
        </table>
        <table>
        </table>
      </div>
    </section>
  </main>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

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

Challenge: Step 11

Link to the challenge:

I have replied to this problem in your other forum thread.

Please do NOT create multiple forum posts for the same problem.
That simply wastes the time of those of us who give up some of our free time to try to help fellow learners on the forums.

You might not get an immediate reply.
You could usefully use that “wait” time to:

  • re-read the instructions - have you followed them correctly?
  • Google search anything in the instructions you don’t understand
  • search the forums for similar problems

If , after an hour or two, you haven’t had a reply to your post, it may have been overlooked.
Just add a reply to your own post so that it appears higher in the list. and has more chance of being noticed.

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