Writing HTML | About | FAQ | Alumni | Tags | Index | back | next |

8d. Links to Sections of a Page

You have seen how to link to other web pages, whether they are ones you created or have found elsewhere on the Internet. What if you wanted to connect to a specific section within a document? YOU CAN!

Objectives

After this lesson you will be able to:

Lesson

Note: If you do not have the working document from the previous lesson, download a copy now.

The Named Anchor

A named anchor is a hidden reference marker for a particular section of your HTML file. This might be used to link to a different section of the same page (like quickly scrolling) or to a marked section of another page. For example, on this page you are viewing, I could create a hidden marker called "check" that marked the heading below "Check Your Work". Then, I write an anchor link that connects to this section of this document. Once you click on a link to this named anchor, your web browser will jump so this line is at the top of the screen.

Here is an example you can try right now. Go to Check Your Work and when you get there look for a link that will return you to this section.

The HTML format for creating the named anchor is:

     <a name="NAME">Text to Link To</a> 
or for the link you just tried above:
     <a name="check">Check Your Work</a>
Notice how this subtly differs from the anchor link <a href=... that we learned about in lesson 8a.

Writing a Link to a Named Anchor

When you want to create an hypertext link (or an "anchor link", see lesson 8a) to a named anchor, use the following HTML:
     <a href="#xxxxx">Text to act as hypertext</a>
or for the link you just tried that sent you to the section below:
     Go to  <a href="#check">Check Your Work</a>
The "#" symbol instructs your web browser to look through the HTML document for a named anchor called "xxxxxx" or in our example "check". When you select or click on the hypertext, it brings the part of the document that contains the named anchor to the top of the screen.

Adding Named Anchors to the Volcano Web Lesson

Now, we will build a table of contents for our lesson that will appear at the top of our Volcano Web page. The entries for this will be the headings we have already created. Each will act as a hypertext link to a particular section of our lesson.

The first step is to create a named anchor for each of the heading sections in your Volcano Web lesson:

  1. Open your index.htm file in the text editor
  2. Find the heading for the Introduction. Change it from:
    <h2>Introduction</h2>
    so that it looks like:
    <h2><a name="intro">Introduction</a></h2>
    
    NOTE: You have just marked the line that contains the header "Introduction" with a hidden reference marker, the named anchor "intro"
  3. In a similar manner, change all header level 2 (<h2>) tags for the other sections:
      <h2><A NAME="term">Volcano Terminology</A></h2>
      
      <h2><A NAME="usa">Volcanic Places in the USA</A></h2>
      
      <h2><A NAME="mars">Volcanic Places on Mars</A></h2>
      
      <h2><A NAME="project">Research Project</A></h2>
    
  4. If you Reload now from your web browser, you will not notice any visible changes; the named anchor tags we have just added are hidden from the users view.

Adding Links to a Named Anchor in the Same Document

Now we will set up a table of contents that will appear at the top of the screen. We will use an unordered list (see lesson 6 for more on lists) to create this list:
  1. If not already open, open your index.htm file in the text editor.
  2. Below the first sentence under the Volcano Web heading enter the following text:
    <hr>
    <B>In this Lesson...</B>
    <ul><i>
    <li>Introduction
    <li>Volcano Terminology
    <li>Volcanic Places in the USA
    <li>Volcanic Places on Mars
    <li>Research Project</i>
    </ul>
    
    NOTE: This index is marked off above and below by a solid line using the <hr> tag. The Italic style is used on the entries for the text. At this point we have only entered the text of the index entries. Below we will add the HTML to make the links active.
  3. Save and Reload into in your web browser.
Finally, we want to make each item of the list act as a hypertext link to another section of the document. To do this, we will use a variation of the basic anchor link lessons 8a. Rather then linking to another file, we link to one of the named anchors within the file. We indicate a named anchor by preceding the reference marker name with a "#" symbol:
  1. Open your index.htm file in the text editor
  2. Go to the first list item in your index section. Change it from:
        <li>Introduction
    
    to look like:
        <li><A HREF="#intro">Introduction</A>
    
  3. You should now be able to fill in the other links to named anchors so that the section now looks like:
    <hr>
    <B>In this Lesson...</B>
    <ul><i>
    <li><A HREF="#intro">Introduction</A>
    <li><A HREF="#term">Volcano Terminology</A>
    <li><A HREF="#usa">Volcanic Places in the USA</A>
    <li><A HREF="#mars">Volcanic Places on Mars</A>
    <li><A HREF="#project">Research Project</A></i>
    </ul>
    
  4. Save and Reload into your web browser. When you click on an item in your index, the browser should display the associated section at the top of your screen.

Adding Links to a Named Anchor in Another Document

You can create a link that jumps to a section of another HTML document that is marked by a named anchor. The HTML for building a link to a named anchor in another HTML document is:
     <a href=file.htm#NAME>Text to activate link</a>
In lesson 8a we created an hypertext link that jumped from the section of our lesson on Mount St. Helens to msh.htm, a separate HTML file. Now we will add a link in that second document that will return to the original section of the main Volcano page.
  1. Open your msh.htm file in the text editor
  2. Near the bottom of the HTML (but above the </body> tag) enter the following text:
    <hr>
    <a href="index.htm#usa">Return to <i>Volcano Web</i></a>
    
    NOTE: We have included the Italic Style tag <i>...</i> within the text marked by the named anchor "usa".
  3. Save and Reload into your web browser. When you click on one of the hypertext at the bottom of the msh.htm page, you should jump back to the "Volcanic Places in the USA" section of the Volcano Web lesson.
In this case the link is just the name of another HTML file, msh.htm, in the same directory as the index.htm file. However, you can use a full URL (see lesson 7) to link to a named anchor in an HTML file on a remote computer. For example, to create a link to the "Introduction" section of an HTML file stored on the MCLI WWW server, the syntax would be:
   <a href=http://www.mcli.dist.maricopa.edu/tut/final/index.htm#intro>
      Introduction to Volcano Web</a>
The reference marker "#anchor_name" is tacked onto the end of the URL.

Check Your Work

Compare your web page with a sample of how this document should appear. If your web page was different than the sample or the named anchor links do not properly connect, review the text you entered in the text editor.

Example of using the link to return to section on describing the named anchor...

Review Topics

  1. How do you identify a named anchor?
  2. What are the steps for creating a link to different section within a document?
  3. How do you modify an anchor link to connect to a named anchor in another HTML document?
  4. How do you create a table of contents for a web page?
  5. What is the difference in function between the tags <a href="...> and <a name="...> ?

Independent Practice

Create named anchors for the headings in your own web page and build an index that will link to these sub-sections.

Coming Next....

In the next lesson you will learn how to make a picture act as a hypertext link.

GO TO.... | Lesson Index | back: "Links to the Internet" | next: "HyperGraphics" |

Writing HTML Lesson 8d: Links to Sections of a Page
©1995 Maricopa Center for Learning and Instruction (MCLI)
Maricopa County Community College District, Arizona

The Internet Connection at MCLI is Alan Levine --}
Comments to levine@maricopa.edu

URL: http://www.mcli.dist.maricopa.edu/tut/tut8d.htm