How to use href in HTML5

There is no real difference between the href attribute use in HTML5 and the attribute use in XHTML. href=”http://www.website.com” is how you should use the href attribute and is mainly used in internal and external page links. Please find below an example which clearly shows the correct href use in HTML5.

<a href="http://www.website.com">Link Text</a>


Was this useful?