Stuck on step 13, and not quite sure why. What am I missing? I’ve reloaded the page multiple times as well.
Step 13
In your first tr, add a th element with the text Cash This is the cash we currently have on hand… Wrap all of that text except Cash in a span element with the class set to description.
Following that, add three td elements with the following text (in order): $25, $30, $28. Give the third td element a class attribute set to current.
<tr class="data">
<th>Cash <span class="description>This is the cash we currently have on hand. </span></th>
<td>$25</td>
<td>$30</td>
<td class="current">$28</td>
</tr>
Test
Sorry, your code does not pass. You’re getting there.
Hint
Your th element should have the text Cash This is the cash we currently have on hand…