Here is a snippet of HTML code I am working with:
<div><span class='top'>Answered</span></div><div id="hour">15</div>
<div><span class='top'>Not Answered</span></div><div id="minute">35</div>
<div><span class='top'>Marked for Review</span></div><div id="second">10</div>
<div class='clear'></div>
The resulting output of the above code is displayed as follows:
Answered
15
Not Answered
35
Marked for Review
10
I need assistance in formatting this data into the following structure without using a <table>
tag:
Answered Not Answered Marked for Review
15 35 10