HTML Attributes
HTML attributes provide additional information about elements. They are always specified in the start tag and usually come in name/value pairs like name="value"
.
<p class="large-text">This is a paragraph with a class attribute.</p>
The `href` Attribute
The `href` attribute specifies the URL of the page the link goes to. It is most commonly used in the (anchor) element.
<a href="https://www.example.com">Visit Example.com</a>
The `src` Attribute
The `src` attribute specifies the path to the image you want to display. It is used within the <img> element.
<img src="image.jpg" alt="A beautiful sunrise">
The `width` and `height` Attributes
The `width` and `height` attributes specify the width and height of an image in pixels. They are used within the `` element.
<img src="image.jpg" width="500" height="300" alt="A beautiful sunrise">