HTML Attributes
HTML attributes provide additional information about HTML elements.
Attribute Syntax
<tag attribute="value">
Content
</tag>
Attributes are normally written inside the opening tag.
The href Attribute
The href attribute tells a link where to go.
<a href="https://eduhubsl.com">
Visit EDUHUB
</a>
The src Attribute
The src attribute specifies the location of an image.
<img src="student.jpg">
The alt Attribute
The alt attribute provides alternative text if an image
cannot be displayed.
<img
src="student.jpg"
alt="Student learning HTML"
>
The style Attribute
The style attribute can add CSS directly to an element.
<p style="color: cyan;">
EDUHUB Code Hub
</p>
The title Attribute
The title attribute can display additional information
when the user places the mouse over an element.
<p title="Learn HTML with EDUHUB">
Move your mouse here.
</p>
Always place attribute values inside quotation marks.