link html

HTML
<a href="url">link text</a><a href="link">Text</a><a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
  Example Link
</a><!-- 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 
--><head>
  <link rel="stylesheet" type="text/css" href="theme.css">
</head><link href="main.css" rel="stylesheet">
Source

Also in HTML: