Computer Applications
Write HTML code to create tables as shown below :
HTML Advanced Features
20 Likes
Answer
<HTML>
<BODY>
<TABLE BORDER = "1">
<TR> <TH COLSPAN = "2" BGCOLOR = "YELLOW"> Mammals - Plants - Fish </TH> </TR>
<TR> <TD BGCOLOR = "SKY BLUE" ROWSPAN = "3"> <B> Mammals </B> <BR> Farm Animals <BR> Big Game <BR> Small Critters </TD> <TD BGCOLOR = "LIGHTGREEN"> Cow </TD> </TR>
<TR> <TD BGCOLOR = "LIGHTGREEN"> Pig </TD> </TR>
<TR> <TD BGCOLOR = "LIGHTGREEN"> Horse </TD> </TR>
</TABLE>
</BODY>
</HTML>
Answered By
9 Likes
Related Questions
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>
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>