HTML Developer Question:
Download Questions PDF

Write an HTML table tag sequence that outputs the following:
10 pcs 200 300
20 pcs 3 40

Answer:

<table>
<tr>
<td>10 pcs</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>20 pcs</td>
<td>3</td>
<td>40</td>
</tr>
</table>

Download HTML Developer Interview Questions And Answers PDF

Previous QuestionNext Question
Tell us how do you create a link that will connect to another web page when clicked?Tell me how do you create links to sections within the same page?