Working with hyperlinks

Here is an example of settings hyperlinks in a linear structure, which can be used to display a series of slides in a presentation. Each page is linked to the next and to the previous page in the chain. Clicking on a link opens the corresponding page in a new window. Open the starting page.

Page 1

  • Item 1
  • Item 2
  • Item 3

next

<html>
<head>
<title>Page 1</title>
</head>
<body>
<h3>Page 1</h3>
<ul>
  <li> Item 1
  <li> Item 2
  <li> Item 3
</ul>
<p>



<a href="p2.html" 
target="w2">next</a>
</body>
</html>

Page 2

  • Item 1
  • Item 2
  • Item 3

prev   next

<html>
<head>
<title>Page 2</title>
</head>
<body>
<h3>Page 2</h3>
<ul>
  <li> Item 1
  <li> Item 2
  <li> Item 3
</ul>
<p>

<a href="p1.html"
target="w2">prev</a>
<a href="p3.html" 
target="w2">next</a>
</body>
</html>

Page 3

  • Item 1
  • Item 2
  • Item 3

prev   next

<html>
<head>
<title>Page 3</title>
</head>
<body>
<h3>Page 3</h3>
<ul>
  <li> Item 1
  <li> Item 2
  <li> Item 3
</ul>
<p>

<a href="p2.html"
target="w2">prev</a>
<a href="p4.html"
target="w2">next</a>
</body>
</html>

Page 4

  • Item 1
  • Item 2
  • Item 3

prev  

<html>
<head>
<title>Page 4</title>
</head>
<body>
<h3>Page 4</h3>
<ul>
  <li> Item 1
  <li> Item 2
  <li> Item 3
</ul>
<p>

<a href="p3.html"
target="w2">prev</a>


</body>
</html>