Linking pages in HTML

by danielkwood

HTML

<html>
  <head>
    <title>Linking your webpages</title>
  </head>
  <body>
     <!-- To link to another page in the same folder: -->
     <a href="page2.html">Click here to go to page 2</a>
     <br/>
    
     <!-- To link to another page in another folder: -->
     <a href="folder2/page2.html">Click here to go to page 2 in folder 2</a>
     <br/>
    
     <!-- To link to a page in a folder above the current folder -->
     <a href="../index.html">Click here to go to the homepage</a>
     <br/>
    
     <!-- To link to another website, include the full URL: -->
     <a href="http://www.google.com">Click here to go to Google</a>
     <br/>
    
     <!-- You can place links inside paragraphs of text -->
     <p>You can <a href="page2.html">click here</a> to go to page 2.</p>
  </body>
</html>