HTML Attributes
Attributes provide additional information about HTML elements. They are placed inside the opening tag and come in name="value" pairs.
Common Attributes
| Attribute | Description |
|---|---|
id | Unique identifier for an element |
class | CSS class name (can be shared) |
style | Inline CSS styles |
href | URL for links |
src | Source for images/scripts |
alt | Alternative text for images |
title | Tooltip text on hover |
💡 Always quote attribute values — use double quotes as standard.