link html code example

Example 1: html links

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

Example 2: css link

<link href="main.css" rel="stylesheet">

Example 3: html link

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

Example 4: external css link

<link rel="stylesheet" href="styles.css">

Example 5: html link tag

<head>
  <link rel="stylesheet" type="text/css" href="theme.css">
</head>

Example 6: 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 
-->

Tags:

Css Example