Click here to go to WebHelps.com
HTML HELP
HTML HELP
More HTML Help
Colors
Symbols
Tag Code Example Browser View
<!--  --> <!--This can be viewed in the HTML part of a document--> Nothing will show
<A <A HREF="http://www.yourdomain.com">Visit Our Site</A> Visit Our Site
<BIG> <BIG>Example</BIG> Example
<BODY> <BODY>The content of your page</BODY> Contents of your webpage
<DL>
<DT>
<DD>
<DL>
<DT>Definition Term
<DD>Definition of the term
<DT>Definition Term
<DD>Definition of the term
</DL>
Definition Term
Definition of the term
Definition Term
Definition of the term
<EM> This is an <EM>Example</EM> of using the emphasis tag This is an Example of using the emphasis tag
<EMBED>
<EMBED src="yourfile.mid" width="100%" height="60" align="center">
<EMBED>
<EMBED src="yourfile.mid" hidden=true autostart=true> Music will begin playing when your page is loaded and will only play one time. Nothing will display on your page.
NOTE: The <font> tag is being phased out in favor of the <span> and <style> tags. You should probably not use <font> tags in new code
<FONT> <FONT FACE="Times New Roman">Example</FONT> Example
<FONT> <FONT FACE="Times New Roman" SIZE="4">Example</FONT> Example
<FONT> <FONT FACE="Times New Roman" SIZE="+3" COLOR="#FF0000">Example</FONT> Example
<FORM> <FORM action="mailto:you@yourdomain.com">
Name: <INPUT name="Name" value="" size="10"><BR>
Email: <INPUT name="Email" value="" size="10"><BR>
<CENTER><INPUT type="submit"></CENTER>
</FORM>
Name:
Email:
<H1> <H1>Heading 1 Example</H1>

Heading 1 Example

<H2> <H2>Heading 2 Example</H2>

Heading 2 Example

<H3> <H3>Heading 3 Example</H3>

Heading 3 Example

<H4> <H4>Heading 4 Example</H4>

Heading 4 Example

<H5> <H5>Heading 5 Example</H5>
Heading 5 Example
<H6> <H6>Heading 6 Example</H6>
Heading 6 Example
<HEAD> <HEAD>Contains elements describing the document</HEAD> Nothing will show
<HR> <HR>
Contents of your webpage

Contents of your webpage
<HR> <HR WIDTH="50%" SIZE="3"> Contents of your webpage

Contents of your webpage
<HR> <HR WIDTH="50%" SIZE="3" NOSHADE> Contents of your webpage

Contents of your webpage
<HR>
(Internet
Explorer)
<HR WIDTH="75%" COLOR="#FF0000" SIZE="4"> Contents of your webpage

Contents of your webpage
<HR>
(Internet
Explorer)
<HR WIDTH="25%" COLOR="#6699FF" SIZE="6"> Contents of your webpage

Contents of your webpage
<IMG> <IMG SRC="images/lillogo.gif" BORDER="0" ALT="a sentence about your site"> a sentence about your site
<INPUT> Example 1:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<INPUT type="text" size="10" maxlength="30">
<INPUT type="Submit" VALUE="Submit">
</FORM>
Example 1:

<INPUT>
(Internet Explorer)
Example 2:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<INPUT type="text" STYLE="color: #FFFFFF; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72A4D2;" size="10" maxlength="30">
<INPUT type="Submit" VALUE="Submit">
</FORM>
Example 2:

<INPUT> Example 3:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="2"><TR><TD BGCOLOR="#8463FF"><INPUT type="text" size="10" MAXLENGTH="30"></TD><TD BGCOLOR="#8463FF" VALIGN="Middle"> <INPUT type=image name="submit" src="yourimage.gif"></TD></TR> </TABLE>
</FORM>
Example 3:

<INPUT> Example 4:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
Enter Your Comments:<BR>
<TEXTAREA wrap="virtual" name="Comments" rows=3 cols=20 MAXLENGTH=100></TEXTAREA><BR>
<INPUT type="Submit" VALUE="Submit">
<INPUT type="Reset" VALUE="Clear">
</FORM>
Example 4:


<INPUT> Example 5:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<CENTER>
Select an option:
<SELECT>
<OPTION >option 1
<OPTION SELECTED>option 2
<OPTION>option 3
<OPTION>option 4
<OPTION>option 5
<OPTION>option 6
</SELECT><BR>
<INPUT type="Submit" VALUE="Submit"></CENTER>
</FORM>

Example 5:

Select an option:

<INPUT> Example 6:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
Select an option:<BR>
<INPUT type="radio" name="option1"> Option 1
<INPUT type="radio" name="option2" CHECKED> Option 2
<INPUT type="radio" name="option3"> Option 3
<BR>
<BR>
Select an option:<BR>
<INPUT type="checkbox" name="selection1"> Selection 1
<INPUT type="checkbox" name="selection2" CHECKED> Selection 2
<INPUT type="checkbox" name="selection3"> Selection 3
<INPUT type="Submit" VALUE="Submit">
</FORM>
Example 6:

Select an option:
Option 1
Option 2
Option 3

Select an option:
Selection 1
Selection 2
Selection 3