We have seen few HTML tags and their usage like heading tags <h1>, <h2>,paragraph tag <p> and other tags. We used them so far in their simplest form, but most of the HTML tags can also have attributes, which are extra bits of information.
All HTML elements can have attributes.
Attributes provide additional information about an element.
Attributes are always specified in the start tag.
Attributes usually come in name/value pairs like: name=âvalueâ
An attribute is used to define the characteristics of an HTML element and is placed inside the elementâs opening tag. All attributes are made up of two parts â a name and a value
The name is the property you want to set. For example, the paragraph <p> element in the example carries an attribute whose name is align, which you can use to indicate the alignment of paragraph on the page.
The value is what you want the value of the property to be set and always put within quotations. The below example shows three possible values of align attribute: left, center and right.
<title>Align Attribute  Example</title>
<p align = âleftâ>This is left aligned</p>
<p align = âcenterâ>This is center aligned</p>
<p align = ârightâ>This is right aligned</p>
HTML links are defined with the <a> tag. The link address is specified in the href attribute:
<a href=âhttps://www.w3schools.comâ>This is a link</a>
HTML images are defined with the <img> tag.
The filename of the image source is specified in the src attribute:
<img src=âimg_girl.jpgâ>
THE WIDTH AND HEIGHT ATTRIBUTES
Images in HTML have a set of size attributes, which specifies the width and height of the image:
<img src=âimg_girl.jpgâ width=â500âł height=â600âł>
The alt attribute specifies an alternative text to be used, when an image cannot be displayed.
The value of the attribute can be read by screen readers. This way, someone âlisteningâ to the webpage, e.g. a vision impaired person, can âhearâ the element.
<img src=âimg_girl.jpgâ alt=âGirl with a jacketâ>
The alt attribute is also useful if the image does not exist.
The four core attributes that can be used on the majority of HTML elements (although not all) are â
The id attribute of an HTML tag can be used to uniquely identify any element within an HTML page. There are two primary reasons that you 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 you have two elements of the same name within a Web page (or style sheet), you can use the id attribute to distinguish between elements that have the same name.
We will discuss style sheet in separate tutorial. For now, letâs use the id attribute to distinguish between two paragraph elements as shown below.
<p id = âhtmlâ>This para explains what is HTML</p>
<p id = âcssâ>This para explains what is Cascading Style Sheet</p>
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 when cursor comes over the element or while the element is loading.
<title>The title Attribute Example</title>
<h3 title = âHello HTML!â>Titled Heading Tag Example</h3>
TITLED HEADING TAG EXAMPLE
The class attribute is used to associate an element with a style sheet, and specifies the class of element. You will learn more about the use of the class attribute when you will learn Cascading Style Sheet (CSS). So for now you can avoid it.
The value of the attribute may also be a space-separated list of class names. For example â
class = âclassName1 className2 className3â
The style attribute allows you to specify Cascading Style Sheet (CSS) rules within the element.
<title>The style Attribute</title>
<p style = âfont-family:arial; color:#FF0000;â>Some textâŠ</p>
INTERNATIONALIZATION ATTRIBUTES
There are three internationalization attributes, which are available for most (although not all) XHTML elements.
The dir attribute allows you to indicate to the browser about the direction in which the text should flow. The dir attribute can take one of two values, as you can see in the table that follows â
ltrLeft to right (the default value)
rtlRight to left (for languages such as Hebrew or Arabic that are read right to left)
<title>Display Directions</title>
This is how IE 5 renders right-to-left directed text.
When dir attribute is used within the <html> tag, it determines how text will be presented within the entire document. When used within another tag, it controls the textâs direction for just the content of that tag.
The lang attribute allows you to indicate the main language used in a document, but this attribute was kept in HTML only for backwards compatibility with earlier versions of HTML. This attribute has been replaced by the xml:lang attribute in new XHTML documents.
The values of the lang attribute are ISO-639 standard two-character language codes. Check HTML Language Codes: ISO 639 for a complete list of language codes.
<title>English Language Page</title>
This page is using English Language
The xml:lang attribute is the XHTML replacement for the lang attribute. The value of the xml:lang attribute should be an ISO-639 country code as mentioned in previous section.
Hereâs a table of some other attributes that are readily usable with many of the HTML tags.
alignright, left, centerHorizontally aligns tags
valigntop, middle, bottomVertically aligns tags within an HTML element.
bgcolornumeric, hexidecimal, RGB valuesPlaces a background color behind an element
backgroundURLPlaces a background image behind an element
idUser DefinedNames an element for use with Cascading Style Sheets.
classUser DefinedClassifies an element for use with Cascading Style Sheets.
widthNumeric ValueSpecifies the width of tables, images, or table cells.
heightNumeric ValueSpecifies the height of tables, images, or table cells.
titleUser DefinedâPop-upâ title of the elements.