SyntaxStudy
Sign Up
HTML Beginner 1 min read

HTML Attributes

HTML Attributes

Attributes provide additional information about HTML elements. They are placed inside the opening tag and come in name="value" pairs.

Common Attributes

AttributeDescription
idUnique identifier for an element
classCSS class name (can be shared)
styleInline CSS styles
hrefURL for links
srcSource for images/scripts
altAlternative text for images
titleTooltip text on hover
💡 Always quote attribute values — use double quotes as standard.
Example
<p id="intro" class="text-blue" title="Intro paragraph">
  This paragraph has several attributes.
</p>
<a href="https://learncode.com" target="_blank">Visit LearnCode</a>
<img src="photo.jpg" alt="A beautiful photo" width="300">