css link use in html code example
Example: linking css
<html>
<head>
<title>CSS Styling</title>
<!-- `./` because the file is in the same directory as the HTML file -->
<link rel="stylesheet" type="text/css" href="./styles.css" />
</head>
<body>
<h1>CSS Styling</h1>
</body>
</html>