What are the advantages and disadvantages of a web site that contains a single page ?
Posted
by Misha Moroshko
on Stack Overflow
See other posts from Stack Overflow
or by Misha Moroshko
Published on 2010-06-02T12:18:23Z
Indexed on
2010/06/02
12:24 UTC
Read the original article
Hit count: 284
web-development
|website
I would like to code a little web site that will contain several sections like "Home", "Gallery", "Contact Us", "FAQs", and so on.
I thought to do this in one HTML by putting each section in a div
and show only one div
per time (using Javascript / jQuery), based on the chosen menu button.
Alternatively, I could create a separate HTML page per section, and link these pages to the menu buttons.
What are the advantages and disadvantages of these two methods ?
© Stack Overflow or respective owner