HTM35


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

      To make a link, give the <A> tag an HREF (hypertext reference) attribute. A link typically looks something like this: <A HREF = �Welcome.html�>Welcome Page</A> In this example, the HREF attribute is set to the name of a document called welcome.html. It is recommended to use QUOTES when calling a file or document, although technically you don�t need them unless the name contains spaces, slashes, or other funny characters. The text between the <A> and </A> tags, �Welcome Page� becomes the link. Clicking it will reference the user to the �Welcome.html� file. Although <A></A> tags are most frequently placed around chunks of text, they can just as easily be placed around other page elements, such as in-line graphics.


..Back to the top..



OUTPUT:


HTM35. Another Anchor

WELCOME TO MY WEB PAGE

Name goes here
Address goes here
Phone Number goes here

Let me introduce myself, I have love to write HTML.
I have been working with many people. This is my personal
Web page, in case you want to know more about me.
Table of Contents
Resume
Professional
Personal

Resume
Experience
Education credentials go here
Experience:
Current and previous employment go here
Skills:
computer, software, and other skills go here
Return to table of contents


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>HTM35. Another Anchor</TITLE></HEAD>
<BODY>
<H2><B><CENTER><FONT COLOR=�red�>WELCOME TO MY WEB PAGE</FONT></CENTER></B></H2>
<B><CENTER><FONT COLOR = �red�>Name goes here</FONT></CENTER></B>
<B><CENTER><FONT COLOR = �red�>Address goes here</FONT></CENTER></B>
<B><CENTER><FONT COLOR = �red�>Phone Number goes here</FONT></CENTER></B>
<P>
Let me introduce myself, I have love to write HTML.<BR>
I have been working with many people. This is my personal<BR>
Web page, in case you want to know more about me.
<A NAME = �Contents�><B>Table of Contents</B></A><BR>
<! Define source tags>
<A HREF=�#resume�>Resume</A><BR>
<A HREF=�#professional�>Professional</A><BR>
<A HREF=�#personal�>Personal</A><BR>
</P>
<! Define destination tag for resume source tag>
<P>
<A NAME = �resume�><B><FONT COLOR = �blue�>Resume
</FONT></B></A><BR>
<B><I>Experience</I></B><BR>
Education credentials go here<BR>
<A NAME = �Experience�><B><I>Experience:</I></B></A><BR>
Current and previous employment go here<BR>
<A NAME = �Skills�><B><I>Skills:</I></B></A><BR>
computer, software, and other skills go here<BR>
<! Define a source tag for the first destination tag on the top>
<A HREF = �#Contents�>Return to table of contents</A>
</BODY>
</HTML>


..Back to the top..