<!DOCTYPE html>
<html>

<head>
  <title>Basic Hyperlinks</title>
  <base href="/~sultans/html/demo/2links/">
</head>

<body>
  <p>Use a <b>relative URL</b> to visit another page within the same site <a href="2title.html">Click Here</a> </p>

  <p>Use an <b>absolute URL</b> to visit Sam Sultan's home page <a href="http://www.samsultan.com/">Sam's Home Page</a> </p>
  
  <p>Take a look at the list of files in the <b>current directory</b> <a href=".">using .</a> 

  <p>Take a look at the list of files in the <b>parent directory</b> <a href="..">using ..</a> 
</body>

</html>