Computer Applications
Write HTML code to create tables as shown below :
HTML Advanced Features
24 Likes
Answer
<HTML>
<BODY>
<TABLE BORDER = "1">
<TR> <TD ROWSPAN = "3"> Column 1 </TD> <TD> Row 1 </TD> </TR>
<TR> <TD> Row 2 </TD> </TR>
<TR><TD> Row 3 </TD> </TR>
</TABLE>
</BODY>
</HTML>
Answered By
15 Likes
Related Questions
Write HTML code to create tables as shown below :
Write HTML code to create tables as shown below :
Write HTML code to create tables as shown below :
How to create hyperlinks.
<HTML> <BODY> <P> <A href = "lastpage.htm">This text</A> is a link to a page on this Web site.</P> <P> <A href="http://www.microsoft.com/"> This text</A> is a link to a page on the World Wide Web. </P> </BODY> </HTML>