different ways to add external css in html code example
Example 1: connect html file to css
<head>
<link rel="stylesheet" href="styles.css">
</head>
Example 2: how to refer to external style sheet
<html>
<head>
<link rel="stylesheet" type="text/css" href="Name.css">
</head>
<body>
.
.
.
</body>