Computer Science, asked by mandarokar, 11 months ago

how to make table in html​

Answers

Answered by amithazra095
2

Answer:

by using <table>..... </table> tags, tables can be made in html

Answered by TheMoonlìghtPhoenix
7

Explanation:

ANSWER:-

<HTML>

<HEAD>

<TITLE> Creating Tables </TITLE>

</HEAD>

<BODY>

CENTER><BR><BR> <TABLE BORDER = 2 BORDERCOLOR = "RED">

<TR>

<TH>Roll no</TH> <TH>Name</TH>

<TH>Age</TH> <TR>

<TR>

<TD>101</TD> <TD>Aashi</TD> <TD>12</TD>

</TR>

<TR>

<TD>102</TD> <TD>Aaditya</TD>

<TR>

<TR>

<TD>13</TD>

<TD>103</TD> <TD>Babita</TD> <TD>14</TD>

</TR>

</TABLE>

</CENTER> </BODY>

</HTML>

Similar questions