You may recall from lessons on web page structure, web site structure and information on navigation that you need to create a file and folder naming structure for your website. This project will require an index.html file (or default.html, depending on how your computer is set up) and additional files for the other information.
There are a number of organizational structures that you may consider for the site. Some of the more direct structures are
A sequential structure is, as the name implies, a series of pages linked in sequence from. Each may have sub pages. The organization looks like this
Figure Sequential Web Page Structure
File names for this sort of web structure could be
If there are a lot of files associated with each topic, folders may be used to organize the files on the website. In that case, the organization would be as shown below. Folders are in red to make the structure easier to visualize.
website folder
index.html
topic1 folder
topic1.htm
topic1a.htm
topic1b.htm
topic1...
topic2 folder
topic2.htm
topic2...
Navigation (hyperlinks on the pages) would be as shown in the figure above. The opening page has a link only to topic1. Topic 1 has a link to topic 2, a link back to the opening page, and a link to each of the topic 1 subtopics. In the figure above, each of the lines connecting one page to another indicates a link to and a link back.
This structure is like an inverted tree, with the opening page at the top.
Figure Hierarchical Web Structure
File names would be exactly the same as for the previous example, as would the folder structure and naming. The navigation structure is different, so the web links embedded in the pages would be different. As the figure shows, the opening page links to each of topic1, topic2, and topic3. Topic1 is shown with sub-topics. It would have links back to the opening page and to each of the sub-topics. It would not have links across to other topics. Navigation is up and down the branches.
Procedural is also referred to as a 'how-to' structure.
Figure Procedural or 'How-To' Web Structure
You are probably way ahead on this one, and realize that the file and folder naming and organization is still the same as in the previous two examples. But, like the previous example, the navigation structure has changed. This time, the starting page links directly to each of the main topics (topic1, topic2, ...), and each topic has a link back to the starting page. Within a topic, the navigation Parts sequentially through the sub-topics. You go through them in order from left to right and back again. Each sub-topic has a link to the previous one and the next one.
Reference book (may be out of print)
Horton, William; et al. The Web Page Design Cookbook. 1996, John Wiley and Sons.
The purpose of this activity is to build capability with developing a structured web site. Please complete all sequences.
You should have one web page for each page drawn on your diagram, with the same filename as in the diagram. All navigations should be complete and functioning.