xxxxxxxxxx
<head>
<link rel="stylesheet" href="styles.css">
</head>
xxxxxxxxxx
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css"> <!--Copy this line of code-->
</head>
<body>
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<html>
#make sure that you are using the link tag inside the head tag
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="path/to/stylesheet.css">
</head>
<body>
<!-- Rest of the HTML content -->
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Your HTML content goes here -->
</body>
</html>