HOME            MAIN            NEXT            PREV

HTML Hypertext Elements Summary


HOME            MAIN           

A Element: Hypertext Anchor

Usage:                <A>...</A>
Can Contain:       characters, character highlighting, APPLET, BR, IMG,
                          BASEFONT, MAP, SCRIPT, INPUT, SELECT, TEXTAREA
Can Be Inside:    ADDRESS, BLOCKQUOTE, BODY, CENTER, DIV, FORM, PRE,
   
                       DD, DT, LI, P, TD, TH, Hn,
                           CAPTION, character highlighting

Attributes:           HREF, NAME, REL, REV, TARGET, TITLE

A marks a block of the document as a hypertext link. This block can be text, highlighted text, or an image. More complex elements, such as headings, cannot be inside an anchor. In particular, note that an anchor element cannot contain another anchor element. At least one attribute must be either HREF or NAME.
TOP

<P>Mark here as <A NAME=Anchor_Name_1>Anchor Name 1</A></P>
<BR><BR><BR>
<P>
Click <A HREF="#Anchor_Name_1">here</A> to go to the marked &quot;Anchor Name 1&quot;</P>

Mark here as Anchor Name 1




Click here to go to the marked "Anchor Name 1"



TOP

<P>We have the main HTML Summary file name as HtmlSummary.htm. Click <A HREF="HtmlSummary.htm#main">here</A>
to access that file.</P>

We have the main HTML Summary file name as HtmlSummary.htm. Click here to access that file.

 
TOP

 <P>Click <A HREF="http://www.yahoo.com/">here</A> to go to http://www.yahoo.com/.</P>

Click here to go to http://www.yahoo.com/.


TOP

<P>Click <A HREF="HtmlSummary.zip">here</A> to download &quot;HtmlSummary.zip&quot;.</P>

Click here to download "HtmlSummary.zip".


TOP

<P>Click this image <A HREF="HtmlSummary.zip">
<IMG SRC=
"jpg/GoldPetals.jpg" WIDTH="50" HEIGHT="50"
ALT="[GoldPetals.jpg]"></A> to download &quot;HtmlSummary.zip&quot;.</P>

Click this image [GoldPetals.jpg] to download "HtmlSummary.zip".


TOP

<P>Click <A HREF="jpg/GoldPetals.jpg">here</A> to see the image &quot;jpg/GoldPetals.jpg&quot;.</P>

Click here to see the image "jpg/GoldPetals.jpg".


TOP

<P>Click <A HREF="sounds/MozartNo40.mid">MOZART</A> to hear "sounds/MozartNo40.mid".</P>

Click MOZART to hear "sounds/MozartNo40.mid".


TOP

<P>Click <a href="video/CAPTURE.AVI">here</a> to play a video
&quot;video/CAPTURE.AVI&quot;
</P>

Click here to play a video "video/CAPTURE.AVI"


TOP

<P>Click <A HREF="Hypertext.htm" TARGET="_blank">here</A> to load play
&quot;Hypertext.htm&quot; into a new, unnamed window.
</P>

Click here to load play "Hypertext.htm" into a new, unnamed window.


HOME            MAIN