HTML Attributes
Attributes
provide additional information or control the behavior and style of HTML elements.
HTML attributes are included in the opening tag and are written in the format of name="value"
.
<element attributeName="attributeValue"> ... </element>
How can we use attributes?
The src
attribute is an essential attribute of the <img>
tag, specifying the path of the image to be displayed.
<img src="image-path.jpg" alt="image description" />
An img
tag without a defined src attribute will not display an image.
Examples of Key Attributes
Let's learn about the major attributes used in HTML elements.
First, let's look at the attributes that can be used with all HTML elements.
Common HTML Tag Attributes: class
and id
The id
attribute is used when assigning a unique identifier to a specific element, and the class
attribute is used to apply the same style to multiple elements.
class
: Used to apply the same style to multiple elements. Multiple elements can be given the same class name.
<div class="highlight">Applying the highlight class</div>
id
: Used to distinguish a specific element or select a specific element in JavaScript. The id
value must be unique among HTML elements.
<div id="main-content">HTML element with main-content ID</div>
Attributes Specific to Certain Tags
Some attributes can only be used with specific tags. Below are two examples.
img Tag Specific Attributes: src
, alt
In the img
element, src
specifies the path of the image, and alt
specifies the alternative text that will be used if the image cannot be displayed.
<img src="https://picsum.photos/id/237/300" alt="a dog" />
a Tag Specific Attribute: href
In the a
element, which creates a hyperlink to another page, the href
attribute specifies the URL of the page to be navigated to.
The target
attribute determines whether the page opens in a new window when the link is clicked. target="_blank"
sets the link to open in a new window.
<a href="https://example.com" target="_blank">Link</a>
Follow the highlighted section of the code and try inputting it.
Where are attributes located in an HTML element?
Both the start tag and the end tag
The start tag
The end tag
The content
Lecture
AI Tutor
Design
Upload
Notes
Favorites
Help