...

/

Working with Tables in HTML5

Working with Tables in HTML5

In this lesson, we will go over some commonly asked questions on tables in HTML. Let's begin!

Test your understanding of HTML tables

Question 1:

Q

Each cell of a table can be represented by using ________.

A)

<tr>

B)

<td>

C)

<th>

D)

<thead>

The following code demonstrates this:

  • HTML
  • Output
html
output

Question 2:

Q

For table headings we can use ____________.

A)

<td>

B)

<tr>

C)

<thead>

D)

<th>

The ...