Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Image Map Links
Internal Links
Local Links
Picture Links
Target Page
Text Links
Internal Links
[notify admin to delete page]
256
Linking with a Page
Delete Section
Description
To link to a specific spot on a web page, you need to use a pair of anchors. One where you are linking from, and one where you would like to link to. The first one, is where you are linking from. It is very similar to the normal link tag. The starting tag looks like <A HREF="#name"> and the closing tag looks like </A>. The text between the two tags is what is the link. The text "name" identifies the anchor, giving it a name. The second anchor identifies where you are linking to. This tag must be placed in your HTML in the location where you would like to link to. The starting tag is <A NAME="name"> and the closing tag is </A>. It is not necessary that any text goes between these two tags as it is just identifying an area. The text "name", must match that in the first anchor, for the link to work. Here is an example of an internal link.
To link to a specific spot on a web page, you need to use a pair of anchors. One where you are linking from, and one where you would like to link to. The first one, is where you are linking from. It is very similar to the normal link tag. The starting tag looks like <A HREF="#name"> and the closing tag looks like </A>. The text between the two tags is what is the link. The text "name" identifies the anchor, giving it a name. The second anchor identifies where you are linking to. This tag must be placed in your HTML in the location where you would like to link to. The starting tag is <A NAME="name"> and the closing tag is </A>. It is not necessary that any text goes between these two tags as it is just identifying an area. The text "name", must match that in the first anchor, for the link to work. Here is an example of an internal link.
Code
<A NAME="top"> </A> Hello, welcome to this page. Scroll down to see the link. <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <A HREF="#top"> Go To Top Of Page </A>
<A NAME="top"> </A> Hello, welcome to this page. Scroll down to see the link. <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <br><br><br><br><br><br><br> <A HREF="#top"> Go To Top Of Page </A>
Output
n/a
n/a
Practice
Cannot Edit - Code section automatically placed here.
Click to add Section
Advertisements