HTML Attributes

  1. HTML attribute provide additional information about HTML element
  2. HTML attribute used inside opening tag
  3. HTML attibute change the behaviour of elements

The href attribute 

  1. href attribute used inside Anchor tag 
  2. Anchor tag used to create a link ( that mean link one page to another page )
  3. href attibute have location ( mean path of ) other page

<a href = " "> tag known as anchor tag used to create a link and href attribute consist location of next page

Example

<a href="https://fast2learning.com"> fast2learning</a>

<a href="https://www.google.com"> Google </a>

Result

fast2learning

Google