Menu
HTML Fundamentals

HTML Attributes

Configure elements with attributes like id, class, src, href, alt.

1Using Attributes

Attributes provide extra information about an element. They live inside the opening tag as name="value" pairs.

Example Code
<a href="https://example.com" target="_blank" rel="noopener">Visit</a>
<img src="logo.png" alt="Logo" width="120" height="40" />
<input type="email" name="email" required placeholder="you@site.com" />

Finished reading?

Mark this topic as complete to track progress.