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!
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: