HTML TABLE
HTML TABLE:-
1.Table is representing data and information in row and column format.
2.there are following parts used in table.
roll name city- (heading)- <TH> </TH>
101 Ramesh Nagpur
102 umesh pune
103 Mahesh nashik- (data)- <TD> </TD>
ROW= <TR> </TR>
3.Table used to be created inside the <table>.
<HTML>
<BODY>
<TABLE border="1">
<TR>
<TH> ROLL </TH>
<TH> NAME </TH>
<TH> CITY </TH>
</TR>
<TR>
<TD> 101 </TD>
<TD> RAMESH </TD>
<TD> NAGPUR </TD>
</TR>
<TR>
<TD> 102 </TD>
<TD> UMESH </TD>
<TD> PUNE </TD>
</TR>
<TR>
<TD> 103 </TD>
<TD> MAHESH </TD>
<TD> NASHIK </TD>
</TR>
</TABLE>
</BODY>
</HTML>
Comments
Post a Comment