0
0
HTMLmarkup~20 mins

Table structure in HTML - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Table Structure Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
rendering
intermediate
2:00remaining
What is the visual output of this HTML table code?
Look at the following HTML code for a table. What will you see rendered in the browser?
HTML
<table>
  <thead>
    <tr><th>Name</th><th>Age</th></tr>
  </thead>
  <tbody>
    <tr><td>Alice</td><td>30</td></tr>
    <tr><td>Bob</td><td>25</td></tr>
  </tbody>
</table>
AAn empty table with no visible content.
BA list of names and ages without any table structure or borders.
COnly the header row with 'Name' and 'Age' is shown, no data rows appear.
DA table with two columns labeled 'Name' and 'Age' and two rows: 'Alice 30' and 'Bob 25'.
Attempts:
2 left
💡 Hint
Remember that defines the header row and contains the data rows.