IT350 - Web and
Internet Programming
Web sites are meant to provide information, promote something, and/or attract users. Up till now, we have looked mostly at the structure of web pages. Now we will look at formatting – an important additional aspect of good web site design. The techniques used in XHTML 1.1 are cascading style sheets (CSS). For this lab, dress up your site using CSS.
Part of the role of web author is to be creative, using the available tools. Again, this lab will be building on the pages you created last week. Therefore, it is highly recommended that you use a copy of the pages you created last week as the basis for this lab. At a minimum your Unit Home Page, event schedule and form from the previous labs are required and shall be adapted to CSS. In addition, your pages should convey a set purpose, be organized in such a way that it promotes that purpose, and be visually appealing.
Since the focus in this lab is on appearance, a larger than usual portion of your grade will depend upon aesthetics.
You
must create a folder on your Web drive called "Lab03" (without the
quotes) and store your work in that directory. (You are highly encouraged to
copy your lab from last week into this directory and make changes to it
there!).
1. New style sheet: Create an external style sheet to contain a core set of styles used in all pages within this lab’s site. The name of the style sheet must be “styles.css” (without the quotes). At a minimum, define the following attributes in some element:
Ø text-decoration
Ø text-align
Ø background-color
Ø font-weight
Ø color
Ø margin-xxx (left, right, top, or bottom)
Ø border-style or color or width
2. Existing HTML pages: modify all of your existing XHTML pages (that you have copied into the Lab03 directory) to link to the style sheet you created above. Then make any additional changes to each page so that the overall appearance is noticeably different now that the stylesheet has been added (hint: you don’t necessarily have to modify the body of your page to achieve this, though it is fine to do so). Try to make use of CSS to make your pages more attractive and more functional.
3. New HTML page: Create a new page, detail.html, that provides details about a specific fictitious event in your schedule. Ensure the page links to your schedule and provide a link from the schedule to the new page.
Ø Define at least two classes and apply styling using those classes
Ø Use span and div attributes in styling
Ø Use a floating technique to put an image on the right side of a page and have text to the left
Ø Use at least 3 forms of inline styling.
Ø Use the meta element to describe your new page.
4. Validation:Validate all of your XHTML files and your CSS file using the appropriate W3C validator.
Your web page must be constructed using Notepad or a similar text-only editor. The use of programs such as Microsoft Word, Microsoft Frontpage, DreamWeaver, ColdFusion, Mozilla Composer, etc. will be considered an honor offense.
For a nominal amount of extra credit do some/all of the following:
When finished, the structure of your web site should look like this: (items in blue shall undergo creation/modification during this lab)
www.m0XXXXX.it.cs.usna.edu/
default.htm (main page for the course; has links to each week’s lab)
Lab01/
index.html
Lab02/
index.html
schedule.html
form.html
Lab03/
index.html (modify to use CSS)
schedule.html (modify to use CSS
form.html (modify to use CSS – if you had this page from Lab 02)
detail.html (new page with details on one of your events and additional CSS styling)
styles.css (new stylesheet)