HTML for Web Development

0% completed

Previous
Next
Quiz
Question 1
Which tag is used to define a table row?
A
<tr>
B
<td>
C
<row>
D
<th>
Question 2
Which tag is used to define a table header cell?
A
<head>
B
<header>
C
<td>
D
<th>
Question 3
Examine the following code snippet. What is its purpose?
<table border="1">
  <tr>
    <th colspan="3">Student Grades</th>
  </tr>
  <tr>
    <td>Alice</td>
    <td>85</td>
    <td>B</td>
  </tr>
  <tr>
    <td>Bob</td>
    <td>92</td>
    <td>A</td>
  </tr>
</table>
A
It creates a table without any headers.
B
It creates a nested table inside the header cell.
C
It creates an ordered list of student names and grades.
D
It creates a table with a header row spanning three columns.

.....

.....

.....

Like the course? Get enrolled and start learning!
Previous
Next