HTML Tutorial for Beginners Tamil – 10 – HTML CLASS & ID ATTRIBUTES

Learn HTML in Tamil [Complete HTML Tutorial For Beginners Tamil FREE]

DOWNLOAD MY WORK FILE HERE : http://techtamizhan.in/html-beginners-practice.zip

HTML The id Attribute
The HTML id attribute is used to specify a unique id for an HTML element.
You cannot have more than one element with the same id in an HTML document.
________________________________________
Using The id Attribute
The id attribute specifies a unique id for an HTML element. The value of the id attribute must be unique within the HTML document.
The id attribute is used to point to a specific style declaration in a style sheet. It is also used by JavaScript to access and manipulate the element with the specific id.
The syntax for id is: write a hash character (#) character, followed by an id name. Then, define the CSS properties within curly braces {}.

HTML The class Attribute________________________________________
The HTML class attribute is used to specify a class for an HTML element.
Multiple HTML elements can share the same class.
________________________________________
Using The class Attribute
The class attribute is often used to point to a class name in a style sheet. It can also be used by a JavaScript to access and manipulate elements with the specific class name.

You May Also Like