| GotoMy.Com |
HTML - CODE |
Signup to GotoMy.com |
|
Spacers
Forces a line break immediately and retains the same style. (carriage return) <P> Forces a double line break. (new paragraph) <hr> Places a horizontal rule or separator between sections of text.
<font size="2"> Font size 2 </font> <font size="3"> Font size 3 </font> <font size="4"> Font size 4 </font> <font size="5"> Font size 5 </font> Font Color <font color="FFCCFF">Hex Color Code, "FFCCFF" </font> <font color="yellow"> Named Color, "Yellow" </font> Font Styles <font face="Helvetica"> Helvetica font </font> <font face="Baskerville"> Baskerville font </font> <font face="Lucida"> Lucida font </font> Text Styles
<blink> </blink> only in Netscape
src= Specifies the location of the image. URL= Uniform Resource Locator (address on the Web) <img src="http:// url of your image"> alt =Alternate text appears in place of the image when the browser can not display image. (Not Required) <img src="http:// url of your image" alt="image description"> Making a Clickable Link Text Link <a href="http:// url of the target"> Click here </a> Image Link <a href="http:// url of the target"><img src="http:// url of your image"></a> Email Address Link <a href="mailto:YourEmail@Address.here"> Email Me </a> Background Color & Image Patterns
Background Color
Specify a relationship to surrounding text. can be one of these: <center> </center> New paragraph + align <p align="left"> <p align="center"> <p align="right"> Alignment Within a Table <td align=..... > can be one of these: <td align="left"> <td align="center"> <td align="right"> Vertical Alignment <td valign=..... > can be one of these: <td valign="top"> <td valign="middle"> <td valign="bottom"> Table Tags <table> </table> Start and Closing tags of a Table. <tr> </tr> Start and Closing tags of a Table Row. <td> </td> Start and Closing tags of the Table Data. Simple Tables
Definition list/glossary: <dl>
<dl> attribute compact can be used to
generate
a definition list requiring less space. Unordered list: <ul>
Ordered list: <ol>
Interactive menu: <menu>
Directory list of items: <dir>
Listed items should be less than 20 characters long.
HTML Forms Interface
The following tags implement the forms interface:
Defines a form within an HTML document. A document may contain multiple <form> elements, but <form> elements may not be nested. Note that standard html tags can be used within a <form> element. Attributes and their arguments:
Defines an input field where the user may enter information on the form.
Each input field assigns a value to a variable which has a specified
Defines and displays a set of optional list items from which the user can select one or more items. This element requires an <option> element for each item in the list. Attributes and their arguments:
Within the <select> element the <option>
tags are used to define the possible values for the
<select multiple>
Defines a rectangular field where the user may enter text data. If "default text" is present it will be displayed when the field appears. Otherwise the field will be blank. Attributes and their values:
|