Pacific Trails Chapter 6 Assignment - Revised 3/26/18. Follow the assignment instructions to create a folder
Name the folder pacificCh6YourName. So if your name is Barack Obama, name the folder: pacificCh6BarackObama.
Be sure you start with the solution code to Pacific Trails Ch 5.
Read Chapter 6 in the Felke book very carefully.
Do Pacific Trails Resort Case Study, Chapter 6
Maintain the indentation style used in the Chapter 5 solution code, in particular, (a) indentation of CSS properties from the selector (tag, class, id) to which they apply (b) specification of only one css property and value per line
Maintain the selector style used in the Chapter 5 solution code, in particular, a selector should appear at most one time in the css; thus one does not write
body {
color: blue;
}
body {
background-color: yellow;
}
Instead one writes
body
{
color: blue;
background-color: yellow;
}
Using a given selector at several points in the CSS for contextual/descendant purposes
is fine.
There are various possible ways used by industry professionals to order the selectors and order CSS properties for a given selector. However, for this assignment order as follows (requirement added 3/26/18)
Tags, then classes, then id's - within each of these three categories, selectors in alphabetical order
For a given selector, the CSS properties are in alphabetical order
The files must be named index.html, yurts.html, activities.html, and pacific.css
Create a zipped copy of the pacificCh6YourName directory, as follows
Right-click the directory, and select send to > compressed (zipped) directory. Windows may ask if you want to save the zipped directory to the desktop; that is fine.
You should end up with a compressed (zipped) directory called pacificCh6YourName.zip.
Do NOT use a compression program other than zip. I will not be able to open it.
you must submit a .zip file. Do not submit an RAR file; I cannot open it.
Please use the computer lab, CT 122, if your home laptop does not have the programs needed to do this assignment.
Submit the pacificCh6YourName.zip file in Blackboard.