Check out example codes for "html link tag". It will help you in understanding the concepts better.
Code Example 1
<!DOCTYPE html>
<html>
<head>
<title>HTML link Tag</title>
<link rel = "stylesheet" href = "stylenew.css">
</head>
<body>
<div id = "contentinfo">
<p>Welcome to our website. We provide tutorials on various subjects.</p>
</div>
</body>
</html>
Code Example 2
<link rel="stylesheet" href="./styles.css">
Code Example 3
<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>
Code Example 4
<a href="https://example.com">Link text goes here</a>
Code Example 5
<a href="url">link text</a>
Code Example 6
<link rel="stylesheet" type="text/css" href="<?php echo CHEMIN_VUES?>css/style.css">
Learn ReactJs, React Native from akashmittal.com