Online Learning Applications for Technical English


Home
Syllabus
Assignments

Instructor



Producing Homepages

Step 6. Adding links

In the bar graph homepage example, the title is actually a link to the top page of this course created with the HTML anchor (<A> </A>) tag as follows.

Filename: age_range_bar_graph_v7.html
<HTML>

<HEAD>
</HEAD>

<!-- [7/31/2007] - Version 7 of age range -->
<!--   bar graph with title link. -->

<BODY>
<FONT FACE="Arial, Helvetica">
<A HREF="aip4.html"><H2>Online Learning Applications</H2></A>

<P>

<FONT SIZE=-1>
The age range information of AIP4 students:
</FONT>

       .
       .
       .

</BODY>

</HTML>
[ View result ]

In this example, the top page is in the same directory as this bar graph page example so the filename is enough in the HREF attribute. To link to a file in a different directory or Internet location, specify the appropriate path or URL in HREF. For example:

  <A HREF="http://sakura.cs.shinshu-u.ac.jp/pauline/course/aip4/SUGSI/aip4.html">Home for AIP4 Courseware<A>

[ Back ]