HTML-Lesson 26
Other tags--object to q
The 'object' tag
The 'object' tag is used to embed media into a web page.
| Attribute | Values | Notes |
|---|---|---|
| archive | urls | |
| classid | url | |
| codebase | url | |
| codetype | codetype | |
| data | url | |
| declare | declare | |
| height | number | |
| name | text | |
| standby | message | |
| tabindex | number | |
| type | type | |
| usemap | url | |
| width | number |
The 'param' tag
The 'param' tag supplies a parameter within an object. See the object example, when I get around to it.
The pre tag
The pre tag is used to reproduce 'character art', including any number of spaces.
( )
Moo (oo)
\ /------\
|| |\
|| | *
||---vv||
|| ||
|| ||
The 'q' tag
The 'q' tag is used to enclose a short quote. E.G.
<q>Google Chrome is the new kid on the block.</q>
gives:
Google Chrome is the new kid on the block.
The 'samp' tag
The 'samp' tag is used to enclose text from computer programs. E.G.
<samp>Random Access Memory</samp>
gives:
Random Access Memory
The 'strong' tag
The 'strong' tag is used to embolden text. E.G.
<strong>Random Access Memory</strong>
gives:
Random Access Memory
The 'var' tag
The 'var' tag is used to indicate a variable in a program listing. E.G.
<var>cost</var> = 1.20
gives:
cost = 1.20