How you define Attributes in HTML?
Using Attributes we can give us more information about HTML elements.Many times in HTML we use Attributes with their associated value. For assigning the value to attributes we use\'=\'operator.
In an one HTML element can have many attributes.We use Attributes with in start tag of HTML.
Below I have given you some attributes with their values.
style=\"color:red;\"
border=\"1\"
href=\"http://www.r4r.co.in\"
title=\"This is our first HTML page.\"
I have given a example.How to use above three attributes together.Example:
<p border=\"1\" href=\"http://www.r4r.co.in\" style=\"color:red;\" title = \"This is our first HTML page.\"></p>