Here is your simple HTML boilerplate template to start your HTML project:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Project</title>
</head>
<body>
<!-- Your content goes here -->
</body>
</html>
Here is how to link your css file inside your <head> :
<head>
<!-- Link to external CSS file -->
<link rel="stylesheet" href="/css/style.css">
</head>