continue:   tables
back:   images
sample - within a page
sample - between pages

Links

Links to Other Pages

One of the most important functions, that come with HTML, are links from one page to another or within a page. To implement that , there is the <A>-tag.
The <A>-tag exists in two different forms.
"Irgendwas zum Anklicken" kann entweder Text oder auch Bild(er) sein.


sample, link within same page with label

<HTML>
  <HEAD>
    <TITLE>link and label</TITLE>
  </HEAD>
  <BODY>
    <H1>link and label</H1>
    <A NAME=AAA>
    <H3>jump hereAAA</H3>
        <BR>some content, e.g. my picture.
        <BR>
        <IMG SRC=meinbild.jpg ALT="me, phoning">
        <BR>
        <A HREF=#BBB>jump to BBB</A>
    <A NAME=BBB>
    <H3>jump here BBB</H3>
        <BR>some content, e.g. large text
        <BR>
        <FONT SIZE=12>
        <BR>Large Text Line 1
        <BR>Large Text Line 2
        <BR>Large Text Line 3
        <BR>Large Text Line 4
        </FONT>
        <BR>
        <A HREF=#AAA>jump to AAA</A>
  </BODY>
 </HTML>


  It views like that

sample, link to another page

Page A

<HTML>
  <HEAD>
    <TITLE>link to other page</TITLE>
  </HEAD>
  <BODY>
    <H1>link to other page</H1>
        <BR>some content, e.g. my picture
        <BR>
        <IMG SRC=meinbild.jpg ALT="me, phoning">
        <BR>
        <A HREF=sample4b.html>jump to other page</A>
  </BODY>
 </HTML>

Page B

<HTML>
  <HEAD>
    <TITLE>link to other page</TITLE>
  </HEAD>
  <BODY>
    <H1>link to other page</H1>
        <BR>some content, e.g. large text
        <FONT SIZE=12>
        <BR>large text line 1
        <BR>large text line 2
        <BR>large text line 3
        <BR>large text line 4
        </FONT>
        <BR>
        <A HREF=sample4a.html>jump to other page</A>
  </BODY>
 </HTML>


  It views like this



sample - within a page
sample - between pages
continue:   tables
back:   images