Jump to content

Bake76

New Members
  • Posts

    4
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Bake76

  1. I don't really get your folder structure but I suggest somesting like this:

    ROOT
      index.html
    SUBPAGES
      my-friends.html
      my-plans.html
      my-work.html

    Then your my-friends.html should look like this:

    <!doctype html>
    <html>
         <head>
              <title>Friends page</title>
         </head>
    <body>
    	<p>Welcome to my personal <a href="../index.html"> home page.</a></p>
    	<hr>
    	<h1> Friends Page</h1>
    	<p>Check out a list of <a href="">my friends.</a></p>
    	<p>Check out a list of <a href="my-plans.html">my plans.</a></p>
    	<p>Check out a list of <a href="my-work.html">my works.</a></p>
    	</body>
    </html>

    And your index.html like this:

     

    <!doctype html>
    <html>
         <head>
              <title>Friends page</title>
         </head>
    <body>
    	<p>Welcome to my personal <a href="#"> home page.</a></p>
    	<hr>
    	<h1> Friends Page</h1>
    	<p>Check out a list of <a href="subpages/my-friends.html">my friends.</a></p>
    	<p>Check out a list of <a href="subpages/my-plans.html">my plans.</a></p>
    	<p>Check out a list of <a href="subpages/my-work.html">my works.</a></p>
    	</body>
    </html>

     

     

×
×
  • Create New...