1. Designing with CSS gives the author what advantage over traditional static table design?

With the Float features in CSS it gives the web author more of an advantage over traditional style static design. With tables it takes longer to modify and also more tedious, rather than with CSS the author can automatically define the width of the height and set the float that contains the information, and also set the padding and margins to help center the information.

2. Which type of css allows you to attach your style to multiple pages within your website?

The Link section of the CSS features allows you to create multiple pages under the same CSS sheet and also modify something in one single area and also have all the pages updated at once.

3.What is the difference between a Document Relative path and an Absolute path?

Document relative is literally pointing to where a document lies on your computer, for example lets say someone has a document in the Documents area, the document path would be (//documents/name of the document). This example that has been given simply states you are to move forward then go to documents then select the file you need. With an absolute path, it is simply a path that necessarily doesn’t point to a file, it is more like a web URL, for example http://www.disney.com would be an absolute address because, it doesn’t point to a specific file but it does direct you to the specific area you need to go to view the site.

Which tag in an HTML table defines a row?

<td></td> This tag lets you define a row in a table.