|
Geek-Tutorials.com
|
|
The <BR> tag is used to insert a single line break.
<HTML>
<BODY>
Demonstrating Break tag.<BR />
Demonstrating Break tag.
</BODY>
</HTML>
| Core Attributes | class, id, style, title. |
| Attribute | Syntax | Description |
| CLASS | eg. an element's class : eg. multiple classes in an element :
|
An element can belong to multiple classes. Attribute value for CLASS is space-separated list of class names. Begin with a letter range from A-Z or a-z and may be followed by letters (A-Za-z), digits (0-9), hyphens ("-"), underscores ("_"), colons (":"), and periods ("."). The value is case-sensitive. |
| ID | <ELEMENT ID = stID... > | A unique id for an element. stID = a string which specifies attribute value for ID Attribute value for ID begin with a letter range from A-Z or a-z and may be followed by letters (A-Za-z), digits (0-9), hyphens ("-"), underscores ("_"), colons (":"), and periods ("."). The value is case-sensitive. |
| STYLE | <ELEMENT STYLE = stStyle ... > | Specify an inline style for the element. Common Usage : to associate a particular style sheet rule for the element. stStyle = a string to specifies the inline style type. Attribute value for STYLE is the type of the style sheet language or style rules. |
| TITLE | <ELEMENT TITLE = stTitle... > | Specify the title for the element. Common Usage : as a tooltip to retrieve advisory information when user hover the mouse over the object. stTitle = a string that specifies the title attribute value. Attribute value for TITLE is space/non space-separated list of text. |