Display as HTML code font </code><blink> </blink> only in Netscape
<strike> cross out text </strike> cross out text
Background Color
<bgcolor="green">
Image Background Pattern
<body background="http:// url of your image">
<table background="http:// url of your image">
Style Background Image Tags
(good for ebaY, Do Not Use On Message Board)
<style>
<!--Body {background: url(http://url of your image)}-->
</style>
| <table border=2> <tr> <td> Gene </td><td> Mary </td> </tr> </table> |
|
| <table border=2> <tr> <td> Sunny </td><td> Sam </td> </tr> <tr> <td> Karen </td><td> Shane </td> </tr> </table> |
|
Definition list/glossary: <dl>
The <dl> attribute compact can be used togenerate
a definition list requiring less space.Unordered list: <ul><ul>
Ordered list: <ol><ol>
Interactive menu: <menu> Directory list of items: <dir> 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 fieldappears. Otherwise the field will be blank.Attributes and their values:
Listed items should be less than 20 characters long.
The HTML forms interface allows web masters to define HTML documents containing forms to be filled out by a visitor. When a visitor fills out the form and presses a button theform is "submitted." The information on the form is sent toa server for processing. The server will usually send back an HTMLdocument using the information supplied by the visitor and return it for display.
The four middle tags can only be used within a<form> . . . </form> element.Define a form<form> . . . </form>get or post. post is preferred for most applications.
Define an input field <input> (there is no ending tag)<form action="http://www.gord.ws/cgi-bin/register" method=post> . . . </form>name and a specified data type.Attributes and their arguments:
Define a select field<select> . . . </select>
fields accept character data
fields are either selected or not
fields of the same name allow selection of only one of the associated values
defines an action button that sends the completed form to the query server
defines a button that resets the form variables to their default values
defines an invisible input field whose value will be sent along with the other form values when the form is submitted. This is used to pass state information from onescript or form to another.
defines an image map within a form and returns the coordinates of a mouse click within the image.textstring is a symbolic name (not displayed) identifying the input variable as in:
<input type="checkbox" name="box1">textstring depends on the argument for type.type="text" or type="password",textstring is the default value for the input variable. Password values will not be shown on theuser's form. Anything entered by the user will replace any default valuedefined with this attribute.type="checkbox" or type="radio",textstring is the value that will be sent to the server if the checkbox is "checked".type="reset" or type="submit",textstring is a label that will appear on the submit or reset button in place ofthe words "submit" and "reset".checkedtype="checkbox" or type="radio", if checked is present the input field is "checked" by default.size="display_width"display_width is an integer value representing the number of characters displayed for the type="text" or type="password" input field.maxlength="string_length"string_length is the maximum number of characters allowed within type="text" or type="password" variable values. This attribute is only valid for single line "text" or "password" fields.
Define a select field option<option>name="textstring"textstring is the symbolic identifier for the select field variable.size="list_length"list_length is an integer value representing the number of <option> items that will be displayed at one time.multiplemultiple attribute allows selection of more than one <option> value.select field. If the attribute selected is present then the option value is selected by default. In the following exampleall three options may be chosen but bananas are selected by default.
<option>Apples
<option selected>Bananas
<option>Cherries
</select>textstring is a symbolic name that identifies the <textarea> variable.