Developer’s Guide SoundPoint IP / SoundStation IP
•Table Tags
•Meta Information Tags
Unsupported elements and attributes are described in Unsupported XHTML
Elements on page
Basic Tags
The following basic tags are supported:
•
•
<!DOCTYPE>
The <!DOCTYPE> declaration is the very first thing in your document, before the <html> tag. This tag tells the browser which XHTML specification the document uses. XHTML 1.0 specifies three XML document types: Strict, Transitional, and Frameset.
•XHTML Strict
—Use this DTD when you want clean markup, free of presentational clutter.
For example,
<!DOCTYPE html PUBLIC
•XHTML Transitional
—Use this DTD when you need to use XHTML's presentational features.
For example,
<!DOCTYPE html PUBLIC
•XHTML Frameset
—Use this DTD when you want to use frames.
For example,
<!DOCTYPE html PUBLIC
This tag does not have any attributes.
2 - 2