Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Write a HTML table tag sequence that outputs the following
Home
HTML
Write a HTML table tag sequence that outputs the following
asked
Sep 6, 2023
in
HTML
by
Robindeniel
Write a HTML table tag sequence that outputs the following:
50 pcs 100 500
10 pcs 5 50
html
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 6, 2023
by
Robindeniel
<table>
<tr>
<td>50 pcs</td>
<td>100</td>
<td>500</td>
</tr>
<tr>
<td>10 pcs</td>
<td>5</td>
<td>50</td>
</tr>
</table>
...