- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML: Attributes
Attributes in HTML provide additional information about elements and help control their behavior or appearance. Attributes are included within the opening tag of an element and are written as name-value pairs, where the attribute name is followed by an equal sign (=) and the attribute value, both enclosed in quotes ("). Here's an overview of attributes in HTML:
Common Attributes:
id Attribute: Specifies a unique identifier for an element, which can be used for CSS styling or JavaScript interactions.
class Attribute: Assigns one or more class names to an element, allowing you to apply CSS styles to multiple elements with the same class.
style Attribute: Defines inline CSS styles for an element, such as colors, fonts, margins, padding, etc.
src Attribute: Specifies the source URL for elements like images (<img>), audio (<audio>), video (<video>), iframes (<iframe>), etc.
href Attribute: Defines the hyperlink reference for anchor (<a>) elements, pointing to the URL the link should navigate to.
alt Attribute: Provides alternative text for elements like images (<img>) or descriptions for audio/video content.
Boolean Attributes:
- Boolean attributes don't require a value. If present, their value is considered true; otherwise, they are considered false.
- Example: The checked attribute in an <input> element.
Event Attributes:
- Event attributes like onclick, onmouseover, onchange, etc., allow you to attach JavaScript code to handle specific events triggered by the user.
- Example:
Data Attributes:
- Data attributes (data-*) allow you to store custom data for elements, which can be accessed via JavaScript.
- Example:
Custom Attributes:
- You can create custom attributes, but they should start with data- to comply with HTML standards.
- Example:
Attributes play a crucial role in HTML by enhancing the functionality, appearance, and behavior of elements, and they are often used in conjunction with CSS and JavaScript to create dynamic and interactive web pages.