Lab 4: Additional Practice with Block-Level and Inline Elements
Instructions:
- Create an html document that renders to display the list below.
- Use inline tags and attributes to add the presentation styles shown. (Note: the word "must" is in a larger font than the rest of the list.)
- Use the acronym or abbr tag on the word XHTML. Use the title attribute to give its non-abbreviated name.
- Validate your code as transitional at the W3C validator (validator.w3.org). Make any indicated corrections to achieve successful validation.
- Why did I choose "transitional" instead of "strict"?
- Save this file to your removable media with the name lab4.htm.
- Upload this file to the labs folder on the student server.
XHTML Documents must follow the following syntax rules:
- All tags and attributes must be in lower case.
- All attribute values must be enclosed in double quotes.
- All tags must be closed.
- Normally, the closing tag will be the same as the opening tag with "/" before the tag name.
- However, if the element is empty, then the opening tag will be followed by space and "/".
- If elements are nested, the inner element must close before the outer element.