xxxxxxxxxx
<link href="style.css" rel="stylesheet" type="text/css">
xxxxxxxxxx
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Your HTML content goes here -->
</body>
</html>
xxxxxxxxxx
<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>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Rest of the HTML content -->
</body>
</html>
xxxxxxxxxx
<head>
<link rel="stylesheet" type="text/css" href="/path/to/style.css">
</head>
xxxxxxxxxx
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/morioh/dist/css/morioh.min.css">
xxxxxxxxxx
<link href="./resources/css/index.css" type="text/css" rel="stylesheet">