| |
| Web Hosting |
|
|
|
| |
<OBJECT>
|
|
| |
Embeds a software object into a document. The object can be an ActiveX object, a Quicktime movie, or any other objects or data that a browser supports. You can insert a message to visitors when there browser doesn't support this tag. I would suggest using <EMBED> tag for .wmv and .rm file extensions.
EXAMPLE:
<OBJECT CLASSID="movie.py">
<PARAM NAME="movie" VALUE="1">Sorry your browser does not support embedded objects.</OBJECT>
|
|
| |
|
|
| |
|
|
| |
<OL>
|
|
| |
Contains a numbered ordered list.
EXAMPLE:
<OL TYPE="i">
<LI>Number 1</LI>
<LI>Number 2</LI>
<OL TYPE="t">
<LI>Number 3</LI>
<LI>Number 4</LI>
</OL>
</OL>
|
|
| |
|
|
| |
|
|
| |
<OPTGROUP>
|
|
| |
Logically groups items together.
EXAMPLE:<OPTGROUP LABEL="TypesOfFood"></OPTGROUP>
|
|
| |
|
|
| |
|
|
| |
<OPTION>
|
|
| |
Indicates items in a fill-out form selection list. (see the <SELECT> tag).
EXAMPLE:
Select a movie:<SELECT NAME="movies">
<OPTION>Crash
<OPTION>Brokeback Mountain
<OPTION>Good Day, Good Night
<OPTION>King Kong
<OPTION>Narnia
<OPTION>Munich
</SELECT>
|
|
| |
|
|
| |
|
|
|