Answer:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Your HTML code here -->
</body>
</html>
Step-by-step explanation:
This method links the HTML file to the CSS file using the link element in the head section of the HTML file. The href attribute specifies the path to the CSS file, which in this case is style.css. The CSS code is then written inside the style.css file.