Jump to content

Bake76

New Members
  • Posts

    4
  • Joined

  • Last visited

  • Days Won

    1

Bake76 last won the day on November 27 2017

Bake76 had the most liked content!

Bake76's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Yes, that's what I meant. When I use the coding block I get this error. The code shows up in my post but I can't submit it. I also can't edit it, then I get this error: "There was a problem loading this content"
  2. Hmm, I can't post formatted code. When I try I always get this error: Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request
  3. 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>
  4. Hi webmanz, you forgot to close the first <a>. The next </a> is after "my friends" so the whole sentence before it is shown as a link. It should be like this: <p>Welcome to my personal <a href="index.html"> home page.</a></p>
×
×
  • Create New...