href html code example
Example 1: link html
<!-- this is a link tag -->
<link rel="" href="">
<!-- href is the location of your external ressource
list of rel used with a link tag (popular) :
- stylesheet (css)
- alternate
- author
- external
- incon
- index
-->
Example 2: liens hypertexte html mdn
<nav>
<ul>
<li><a href="index_2.html"
title="Accueil">Accueil</a></li>
<!--ou -pour -->
<li><a href="../index_2.html"
title="Accueil">Accueil</a></li>
<li>Contact</li>
</ul>
</nav>