HTML "Attributes"
HTML "Attributes":
HTML attributes provide additional information about HTML elements.
HTML Attributes Charectoristic:
* All HTML elements can have attributes
* Attributes provide additional information about elements
* Attributes are always specified in the start tag
* Attributes usually come in pairs name/value. like: name="value"
Attributes:
1. The href Attribute
The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to:
Example -
<
a
href="https://www.w3schools.com"
>
<
/a
>
2. The src Attribute
The <img> tag is used to embed an image in an HTML page. The src attribute specifies the path to the image to be displayed:
Example -
<
img
src="img_girl.jpg"
>
Comments
Post a Comment