Web Page Design

Text Wrangler Assignment 14

You are to open assignment 13 (wiz.html) about the show the Wizard of Oz that you created in your DOIT folder. Click Save As, and save in your DOIT folder as Yourfirstname_assignment14.html. You will be adding several codes to this site that you are familiar with and one new coding, tables.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

Your webpage should include:

  1. Basic html structure with Your name TW Assignment 14 in the title bar,
  2. You are to add a table before your name at the bottom of the page. The table should have a table heading row and at least four table data rows and at least two columns.
  3. At least one relative hyperlinks to your wiz.html web page in your textwrangler folder.
  4. At least one absolute hyperlink to a site about the Wizard of Oz.
  5. A link to a Wizard of Oz jpg image (of your choice) that you have saved in the images folder you created. It is to open in a blank window and have title text that tells what they will see when they click on it.
  6. Check your page with the HTML Coding Validation. You will follow the link, load the page and see if you have any errors on your page. Scroll down to the bottom of the page and see if you can correct any of the errors and then revalidate.
  7. This assignment is worth 30 points.
  8. You are to print your code in TextWrangler, print your webpage and the validation page - 3 printouts.

Table Coding Examples:
<table align="center" width="30%" border="2" cellspacing="0">
<tr><th>Animal</th> <th>Sound</th></tr>
<tr><td>Dog</td> <td>Bark</td></tr>
<tr><td>Cat</td> <td>Meow</td></tr>
</table>