HTML Attributes
HTML Attributes provide additional information specific to an HTML tag in how to render the content found within the tag. Attributes always come in a name/value pair combination, such as in the following example:
<a href="http://www.google.com/">This link will take you to Google</a>
The <a> is the HTML tag and the href="" is the HTML attribute. In this case, the attribute tells the web browser where to go, should someone click on the text.
Popularity: unranked [?]