Computer Science, asked by goels3981, 5 months ago

write the html code to generate the following output of the table​

Answers

Answered by gamersrooms393245
3

Answer:

DONT NO

Explanation:

MARK ME AS BRAINLIEST

Answered by Anonymous
0

Answer:

to construct a table

use below

<span>

<tb></tb><br>

Explanation:

please mark as brainliest

then it will

&lt;!DOCTYPE html&gt;</p><p>&lt;html&gt;</p><p></p><p>&lt;head&gt;</p><p>    &lt;style&gt;</p><p>        table,th,td {</p><p>            border: 1px solid black;</p><p>            border-collapse: collapse;</p><p>        }</p><p>        th,td {</p><p>            padding: 5px;</p><p>        }</p><p>    &lt;/style&gt;</p><p>&lt;/head&gt;</p><p></p><p>&lt;body&gt;</p><p></p><p>    &lt;h2&gt;HTML Tables&lt;/h2&gt;</p><p>    </p><p>     &lt;table style="width:100%"&gt;</p><p>        &lt;tr&gt;</p><p>            &lt;th&gt;Name&lt;/th&gt;</p><p>            &lt;th colspan="2"&gt;Numbers&lt;/th&gt;</p><p>        &lt;/tr&gt;</p><p>        &lt;tr&gt;</p><p>            &lt;td&gt;Tim&lt;/td&gt;</p><p>            &lt;td&gt;111 22 333&lt;/td&gt;</p><p>            &lt;td&gt;444 55 666&lt;/td&gt;</p><p>        &lt;/tr&gt;</p><p>    &lt;/table&gt;</p><p></p><p>&lt;/body&gt;</p><p></p><p>&lt;/html&gt;

Similar questions