Search⌘ K

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:

Technical Quiz
1.

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

A.

<tr>

B.

<td>

C.

<th>

D.

<thead>


1 / 1

The following code demonstrates this:

Question 2:

Technical Quiz
1.

For table headings we can use ____________.

A.

<td>

B.

<tr>

C.

<thead>

D.

<th>


1 / 1

The following ...