CBSE Class 10 Computer Applications
Question 59 of 125
HTML II — Images, Links and Tables — Question 9
Back to all questions 9
Question Question 9
Table with different vertical alignments in its cells.
<HTML>
<BODY>
<TABLE BORDER>
<TR>
<TH>January</TH>
<TH>February</TH>
<TH>March</TH>
</TR>
<TR ALIGN=center>
<TD>all aligned center</TD>
<TD>Cell 2</TD>
<TD>Another cell,<br> cell 3</TD>
</TR>
<TR>
<TD ALIGN=right>aligned right</TD>
<TD ALIGN=center>aligned to center</TD>
<TD>default,<br>aligned left</TD>
</TR>
</TABLE>
</BODY>
</HTML>