Attributes are important part of HTML. Attribute is used to define the peculiarity of an element and is place inside the element's opening tag. Every attributes are made up of two parts: name and value:
- The name is the property we want to setup. Example, the <font> element in the example carry an attribute whose name is face, which we can use to indicate which typeface we want the text to appear in.
- The value is what we want the value of the property to be. The first example was supposed to use the Arial typeface, so the value of the face attribute is Arial.
The value of the attribute should be put in double quotation marks, and is separated from the name by the equals sign. We can see that a color for the text has been specified as well as the typeface in this <font> element:
<font face="arial" color="#CC0000">
Many HTML tags have a unique set of their own attributes. These will be discussed as each tag is introduced throughout the tutorial. Right now we want to focus on a set of generic attributes that can be used with just about every HTML Tag in existence.
Core Attributes:
The four core attributes that can be used on the majority of HTML elements (although not all) are:
- id
- title
- class
- style
The id attribute can be used to uniquely identify any element within a page ( or style sheet ). There are two primary reasons that we might want to use an id attribute on an element:
- If an element carries an id attribute as a unique identifier it is possible to identify just that element and its content.
- If we have two elements of the same name within a Web page (or style sheet), we can use the id attribute to distinguish between elements that have the same name.
We will discuss style sheet in separate tutorial. For now, the id attribute could be used to distinguish between two paragraph elements, like so:
Note: that there are some special rules for the value of the id attribute, it must:<p id="html">This para explains what is HTML</p><p id="css">This para explains what is Casecading Style Sheet (CSS)</p>
- Begin with a letter (A.Z or a.z) and can then be followed by any number of letters, digits (0.9), hyphens, underscores, colons, and periods.
- Remain unique within that document; no two attributes may have the same value within that HTML document.
The title attribute gives a suggested title for the element. They syntax for the title attribute is similar as explained for id attribute:
The behavior of this attribute will depend upon the element that carries it, although it is often displayed as a tooltip or while the element is loading.
For example:
Above code will generate following result:<h4 title="Hello HTML!">Titled Heading Tag Example</h4>
Now try to bring our cursor over "Titled Heading Tag Example" and see the result.Titled Heading Tag Example

No comments:
Post a Comment