Creating subsite in Expression Web

Discussion in 'HTML & Website Design' started by Blasko93, Jul 15, 2013.

  1. #1
    I have little knowledge in HTML so I decided to use Microsoft Expression Web to build my website, now I have my home page ready and I want to connect it with the sub pages like "contact us, etc...." the way I've been doing it was creating another page and put the link from the new page's index.htm file. But when I have more subsites it becomes very confusing to create new and new pages and then use their links to connect them. Could any of you please tell me how to connect my main pages (home page) with the rest of the subsite? What is the best normal way? Thank you! :)
     
    Blasko93, Jul 15, 2013 IP
  2. GMF

    GMF Well-Known Member

    Messages:
    855
    Likes Received:
    113
    Best Answers:
    19
    Trophy Points:
    145
    #2
    The normal way is pretty much as you described it. From your main page (typically index.html) you connect to your other pages with links (these typically go into a navigation bar).

    So, if you have 4 sites
    index.html
    contact.html
    imprint.html
    description.html

    you would have to simply link them. Something like this (very simple example)

    
    <a href="contact.html">Contact</a> | <a href="imprint.html">Imprint</a> | <a href=" description.html">Description</a>
    HTML:
     
    GMF, Jul 16, 2013 IP