IT 130
Fall 2016
Craig Miller
Weekly Notes
Assignments
- Assignment 1
- Assignment 2
- Assignment 3
- Assignment 4
- Assignment 5
- Assignment 6
- Assignment 7
- Assignment 8
XHTML is really just a newer version of HTML. The X stands for extendable, which allows new tags to be defined. XHTML also has stricter rules for coding pages. Here are the major restrictions:
While it hasn't been officially adopted yet, many browsers now support HTML 5, the next version of HTML. It supports a variety of new tags (e.g. footer, article, section, nav) for indicating logical elements on a page. It is also less strict than XHTML and has a simplified Doc Type declaration: <!DOCTYPE html>
For our class projects, you may follow the HTML 5 conventions.
The DOCTYPE should be specified at the beginning of the document. For html5, just specify: <!DOCTYPE html>