xxxxxxxxxx
<link rel="stylesheet" type="text/css" href="styles.css" />
//Replace styles.css with your css file path
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Link CSS to HTML</title>
</head>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="path/to/your/css/file.css">
</head>
<body>
<!-- Your HTML content goes here -->
</body>
</html>
xxxxxxxxxx
a {
color: blue; /* Sets the link color to blue */
text-decoration: underline; /* Adds underline to the link */
}