a href code example

Example 1: html a href

<a href="http://example.com" >Link text</a>

Example 2: 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 3: link in html

<a href="https://example.com">Link text goes here</a>

Example 4: href html

<a href="link">text</a>

Example 5:

<a> 
  "anchor"
  <!--meaning it is used to create a hyperlink to another webpage or elements within the same webpage-->
 </a>

Example 6: a href

<a href="#"><!-- The "#" to be replaced with filename or website address -->Go Somewhere</a>

Tags:

Misc Example