Computer Applications
Create a basic 3x2 table.
<HTML>
<BODY>
<TABLE BORDER>
<TR>
<TD>A</TD> <TD>B</TD> <TD>C</TD>
</TR>
<TR>
<TD>D</TD> <TD>E</TD> <TD>F</TD>
</TR>
</TABLE>
</BODY>
</HTML>
HTML Advanced Features
3 Likes
Answer
Output
Answered By
1 Like
Related Questions
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>
Jump to another part of same document.
<HTML> <BODY> <P> <A href = "#C4"> See also Chapter 4. </A> </P> <P> <H2>Chapter 1</H2> <P>This chapter explains ba bla bla</P> <H2>Chapter 2</H2> <P>This chapter explains ba bla bla</P> <H2>Chapter 3</H2> <P>This chapter explains ba bla bla</P> <A name="C4"><H2>Chapter 4</H2></A> <P>This chapter explains ba bla bla</P> <H2>Chapter 5</H2> <P>This chapter explains ba bla bla</P> <H2>Chapter 6</H2> <P>This chapter explains ba bla bla</P> <H2>Chapter 7</H2> <P>This chapter explains ba bla bla</P> </BODY> </HTML>
Demonstration of rowspan.
<HTML> <BODY> <TABLE BORDER> <TR> <TD ROWSPAN=2>Item 1</TD> <TD>Item 2</TD> <TD>Item 3</TD> <TD>Item 4</TD> </TR> <TR> <TD>Item 5</TD> <TD>Item 6</TD> <TD>Item 7</TD> </TR> </TABLE> </BODY> </HTML>
Demonstration of colspan and headers.
<HTML> <BODY> <TABLE BORDER> <TR> <TH COLSPAN=2>Head1</TH> <TH COLSPAN=2>Head2</TH> </TR> <TR> <TD>A</TD> <TD>B</TD> <TD>C</TD> <TD>D</TD> </TR> <TR> <TD>E</TD> <TD>F</TD> <TD>G</TD> <TD>H</TD> </TR> </TABLE> </BODY> </HTML>