Computer Applications
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>
HTML Advanced Features
1 Like
Answer
Output
Answered By
2 Likes
Related Questions
Write HTML code to create tables as shown below :
Write HTML code to create tables as shown below :
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>
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>