HTM32


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     Is where we link to specific locations within a web page. We can link to a location within the same web page, or we can link to another web page and to a specific location on that page.


..Back to the top..



OUTPUT:


HTM32. Another HREF

Primary Colors � pick one: yellow red, or blue

Choose a color from the list above


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>HTM32. Another HREF</TITLE></HEAD>
<BODY>
<P>
Primary Colors � pick one:
<A HREF = yellow.html><FONT COLOR = yellow>yellow</FONT></A>
<A HREF = red.html><FONT COLOR = red>red</FONT></A>, or
<A HREF = blue.html><FONT COLOR = blue>blue</FONT></A>
</P>
<CENTER>Choose a color from the list above</CENTER>
</BODY>
</HTML>


..Back to the top..