HTMLHTML · Lesson 03

HTML Attributes

Extra information on elements: id, class, src, href, alt, title.

Video tutorialTrack course · freeCodeCamp
Speed
Next lesson
Watch 00:00 · 1 checkpoints Watch on YouTube More on this topic
Transcript & captions
5/5

Attributes give extra information about an element. They always live in the start tag and usually come in name="value" pairs.

AttributeUsed onPurpose
href<a>Destination URL of a link
src<img>, <script>Source file to load
alt<img>Text alternative for screen readers
idanyUnique identifier for one element
classanyReusable hook for CSS and JS
styleanyInline CSS for that element
Try it yourself

Knowledge check

0/1 answered

Which attribute must be unique on a page?