HTM30


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     To link to a page on a different web site you have to find first the destination file path and copy it to your code to create the link. The HREF attributes must point to a URL, and the URL should appear in quotes, like this: <A HREF = http://www.tip.edu.ph/index.html>Web Site of TIP</A> In this example, the HREF is pointing to a Web page at the URL http://www.tip.edu.ph/index.html


..Back to the top..



OUTPUT:


HTM30. Hyperlink tag Web page

This is an example URLs in Links

This link to YAHOO web site
This link uses the mailto:protocol


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>HTM30. Hyperlink tag Web page</TITLE></HEAD>
<BODY>
<! � Example of Links Using URLs ->
<H2>This is an example URLs in Links</H2>
<A HREF = http://yahoo.com>This link to YAHOO web site</A><BR>
<A HREF = mailto:[email protected]>This link uses the mailto:protocol</A><BR>
</BODY>
</HTML>


..Back to the top..