I believe that data should be included inside tag. Or am I missing something?
Here’s what it looks like now:
Here’s what I believe it should look like:
<tr>
<td>Total</td>
<td>28</td>
</tr>
I believe that data should be included inside tag. Or am I missing something?
Here’s what it looks like now:
Here’s what I believe it should look like:
<tr>
<td>Total</td>
<td>28</td>
</tr>
Hi there,
I’m not quite sure what you’re asking, but are you having trouble completing the lesson?
If it’s asking you to place the <td> within the <tfoot> it won’t accept any other response.
While:
<tfoot>
<tr>
<td>Total</td>
<td>28</td>
</tr>
</tfoot>
is acceptable, it may be looking for:
<tfoot>
<td>Total</td>
<td>28</td>
</tfoot>
instead
I’m just trying to point out, that there’s probably a mistake in the course, and somebody should fix it. That’s all.