Html Attributes

In Html, attributes are provide additional information of Html elements.

Html attributes are defined inside the Html tag.

href attributes

<a> tag is the Hyperlink. href specifies the external link or in same page link.  

Inside the <a> tag “href” attributes defined

Example

<a href=”https://technofuzeweb.com/”>Home</a>

src attributes

<img> tag is used to embed the image file on the webpage. The “src” attribute is used to call the directory or the path for the <img> tag.

Example

<img src=”technofuze_logo.jpeg”>

Scroll to Top