Results 1 to 2 of 2

Thread: Second Page

  1. #1
    Join Date
    Sep 2008
    Posts
    4

    Default Second Page

    How do you make a second page.

  2. #2
    Early Out's Avatar
    Early Out is offline Former Moderator, Still Respected
    Join Date
    Mar 2006
    Location
    Sector R
    Posts
    4,650

    Default

    Your main page should be called index.html, so that when someone points a browser to www.yourdomain.com, that's the page that comes up. But you can create as many other pages as you like, with different names. So, you could have a page about dogs called dogs.html, a page with contact info called contact.html, and so on. Then you just put links to those pages into your main page:

    Code:
    <a href="dogs.html">Click here for the page about dogs</a>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •