Web Application for Polycom Phones UC Software 5.0.0
Polycom, Inc. 48
Table Tags
Meta Information Tags
Audio Tags
Ordered and Unordered List Tags
Unsupported elements and attributes are described in Unsupported XHTML elements on the
Microbrowser.
Basic Tags
The following basic tags are supported:
<!DOCTYPE>Defines the document type
<!---->Defines a comment

<!DOCTYPE>

Place the <!DOCTYPE> declaration first 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 1.1 specifies one XML document type: Strict.
For example, <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
This tag does not support any attributes.
XHTML Strict
Use this DTD for a clean markup free of presentational clutter.
For example, <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
XHTML Transitional
Use this DTD for XHTML's presentational features.
For example, <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
XHTML Frameset
Use this DTD for frames.
For example, <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

<!---->

Use the comment tag to insert a comment in the source code. A comment will be ignored by the browser.
You can use comments to explain your code, which can help you when you edit the source code at a later
date.