hello ,guys, please help me with it
this is the task:
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.
this is my solution:
<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>
this is the hint I get:
You should wrap the text This is the cash we currently have on hand. in a span element.
Hello and welcome to the forum! Please post a link of the challenge with all of your code. You can reply to this and use the format button </>. Please paste all your code between the lines it gives you. We will need both the link and the code to fully help you
I see you have added the code. Can you you paste the link to the challenge? This would help so the people viewing your post dont have to search through the curriculum looking for the challenge you are on
Also, for future reference each challenge should have a help button or a question mark that appears. When you click these buttons it will generate a post for you in the forum that already includes a link to the challenge, and the code.