| |
<I>
|
|
| |
Italicizes text.
EXAMPLE:After this example i can make text <I>look funky.</I>
|
|
| |
|
|
| |
|
|
| |
<IFRAME>
|
|
| |
Creates floating frames within a document. Floating frames differ from normal frames because they are independently manipulated elements within another HTML document. I would actually advise using Php's include command as search engines rarely index framed pages.
EXAMPLE: <IFRAME NAME="something" SRC="http://www.blah.com"></IFRAME>
|
|
| |
|
|
| |
|
|
| |
<IMG>
|
|
| |
Places an inline image in a document. You can us the attributes ISMAP= and USEMAP= with the <IMG> tag to implement imagemaps.
EXAMPLE: <IMG SRC="images/left.gif">
|
|
| |
|
|
| |
|
|
| |
<INPUT>
|
|
| |
Identifies several input methods for forms. This tag must appear between the opening and closing <FRAME> tags.
EXAMPLE:
<FORM ACTION="/cgi-bin/blah/" METHOD="post">
<INPUT name="texta" TYPE="text" SIZE="5">
<INPUT TYPE="submit" VALUE="order">
</FORM>
|
|
| |
|
|
| |
|
|
| |
<INS>
|
|
| |
Indicates text to be inserted in the document. May be either block-level or inline, as necessary.
EXAMPLE:
<P>HTTP stands for HyperText <INS>Transfer</INS> Protocol</P>
|
|
| |
|
|
| |
|
|
| |
<ISINDEX>
|
|
| |
Inserts and input field into the document so that visitors can enter search queries. The queries then go to an application that handles the queries.
EXAMPLE:
<ISINDEX PROMPT="Keyword Search" ACTION="/cgi-bin/blach.cgi">
|
|
| |
|
|
| |
|
|