HTML 4.0 Standard Attributes
To amplify tags attributes are used.
What we mean by amplify is that when a web browser interprets a tag,
it will also search for set attributes and then display the element (tags+attributes) in its entirety.
At some point you may want to give your body element
a background color or perhaps change the width or of a table.
All of these things and more can be achieved using Attributes.
|
The attributes listed here are the core and language attributes
that are standard for all tags (with a few exceptions):
|
Core Attributes
|
Not valid in base, HTML, head, meta, param, script, style, and title elements.
|
Attribute |
Value |
Description |
class |
class_rule or style_rule |
The class of the element |
id |
id_name |
A unique id for the element |
style |
style_definition |
An inline style definition |
title |
tooltip_text |
A text to display in a tool tip |
|
Language Attributes
|
Not valid in base, br, hr, frame, frameset, iframe, param, and script elements.
|
Attribute |
Value |
Description |
dir |
ltr | rtl |
Sets the text direction |
lang |
language_code |
Sets the language code |
|
Keyboard Attributes
|
Attribute |
Value |
Description |
accesskey |
character |
Sets a keyboard shortcut to access an element |
tabindex |
number |
Sets the tab order of an element |
|