HTML Attributes
HTML attributes provide additional information about HTML elements and help configure their behavior and appearance. They are included in the opening tag of an element and are made up of a name and a value pair, separated by an equal sign (=
). The value is typically enclosed in double quotes ("
), but single quotes ('
) can also be used.
Key Points About HTML Attributes:
1. Name-Value Pair: Attributes are defined as name-value pairs. For example, in <a href="
https://www.example.com
">
, href
is the attribute name, and "
https://www.example.com
"
is the attribute value.
2. Placement: Attributes are always placed within the opening tag of an element. Multiple attributes can be added to a single element, separated by spaces.
<img src="image.jpg" alt="A description of the image" width="600" height="400">
3. Common Attributes:
class
: Specifies one or more class names for an element (used for styling with CSS).id
: Defines a unique identifier for an element.style
: Contains inline CSS to apply styles directly to an element.title
: Provides extra information about an element (displayed as a tooltip when the mouse hovers over the element).src
: Specifies the source URL for an embedded content (e.g., images, iframes).href
: Indicates the destination URL for a link.alt
: Provides alternative text for an image if it cannot be displayed.type
: Specifies the type of element (commonly used in form elements and scripts).4. Boolean Attributes: These attributes do not require a value; their presence alone signifies their true state. Common examples include:
checked
: Used with<input>
elements of type checkbox or radio to denote a pre-selected state.disabled
: Indicates that an element is not interactive.readonly
: Makes an input field non-editable.required
: Specifies that an input field must be filled out before submitting a form.
<input type="checkbox" checked>
5. Custom Attributes (Data Attributes): HTML5 introduced data attributes that allow embedding custom data within HTML elements. These attributes start with data-
followed by a custom name.
<div data-user-id="12345" data-role="admin">User Profile</div>
6. Global Attributes: These can be used on any HTML element and include attributes like id
, class
, style
, title
, lang
, dir
(text direction), hidden
, and more.
<p id="intro" class="highlight" title="Introduction">Welcome to the site!</p>
Examples of HTML Attributes in Use:
Anchor Tag with href
and title
Attributes:
<a href="https://www.example.com" title="Visit Example.com">Example</a>
Image Tag with src
, alt
, and title
Attributes:
<img src="logo.png" alt="Company Logo" title="Our Company Logo">
Form Input with type
, name
, value
, placeholder
, required
, and readonly
Attributes:
<form>
<input type="text" name="username" placeholder="Enter your username" required>
<input type="password" name="password" placeholder="Enter your password">
<input type="submit" value="Login">
</form>
HTML attributes play a crucial role in defining and enhancing the functionality and presentation of HTML elements. They allow for the configuration of elements to suit specific needs, such as linking to other resources, controlling form inputs, applying styles, and embedding custom data. Understanding how to use attributes effectively is essential for creating well-structured and interactive web pages.
Subscribe to my newsletter
Read articles from Syed Aquib Ali directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
Syed Aquib Ali
Syed Aquib Ali
I am a MERN stack developer who has learnt everything yet trying to polish his skills 🥂, I love backend more than frontend.