| Introduction to XHTML | |
| Introduction |
HTML 4.0
XML
XHTML
CSS
Standards - Three standard flavors
|
| xHTML |
Extensible HyperText Markup Language (XHTML)
XHTML is NOT
XHTML is
|
| authoring tools |
HTML Authoring Tools Good Basic Text Editors
Functional Word Processors(tricky)
Good WYSIWYG Web Editors
Best Advanced Text Editors
|
| tools for this course |
MS FrontPage Notepad Joe editor |
| xHTML tags |
XHTML tags
Tag Types Most tags are pairs, with a begin tag and an end tag:
Some tags are "empty" and have no end tag:
|
| doctype |
Doctypes for XHTML docs
For XHTML strict:
For XHTML transitional:
For XHTML frameset:
** for XHTML use the following open html tag:
Doctypes for HTML docs For HTML strict:
For HTML transitional (or loose):
For HTML frameset:
** for HTML use the following open html tag:
|
| Simplest web page (transitional XHTML) |
<!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"> |