Introduction to HTML - Part 6 (Attributes)

HTML tags also accept a number of attributes. This generally looks like this:
<TAG ATTR1=value ATTR2="value" ... ATTR3=value> ... </TAG>
The attributes change the behavior of an element or provide additional information. For example:
<BODY BGCOLOR=white> ... </BODY>
Unfortunately, the list of attributes is rather large and depends on the tag. Get a book on HTML for a detailed list.

Next