Stage 10: Using HTML to link to pages within your site.
Every piece of content in your site has it's own URL. The term URL stands for "Uniform Resource Locator", which really means Internet address.
All content in your Drupal web site is labeled as a "Node", and each Node has it's own Node ID, or number.
When you click select a page in your site, you will see that the address of the page will end in node/N where N is the number of your node.
Using HTML, it is possible to select words on one page as hypertext links, that when clicked, take you to another page.
So, let's say you have a page called "About Me", and its Node id number is 6. To link to that page using words on another page you would use something like this..
To find out more about me <a href=/node/6>click here</a>.
For the next task, please click HERE