Linear Structures

Here is an example of the linear structure, in which each page is linked to the next and to the previous pags, in an ordered chain of pages. 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>
  <li> Item 2</li>
  <li> Item 3</li>
</ul>
<p> </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>
  <li> Item 2</li>
  <li> Item 3</li>
</ul>
<p> </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>
  <li> Item 2</li>
  <li> Item 3</li>
</ul>
<p> </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>
  <li> Item 2</li>
  <li> Item 3</li>
</ul>
<p> </p>

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


</body>
</html>