Do you remember the HTML boilerplate? How to structure an HTML page? Well, that’s what you need to do with your code. Your code isn’t enclosed in a body, your body isn’t nested in your HTML… You need to have that structure.
Like this
<!DOCTYPE html>
<html>
<head>
<links>
<title>Page Title</title>
</head>
<body>
Your code goes here
</body>
</html>
Once you have that structure, create a link in the head element that will be linked to your CSS. In case you forgot how we link CSS to HTML, here’s a fantastic article from the FCC.
Also, you forgot to open your main element. I only see the main closing tag.
Once you make these changes, your code will be approved.
The best practice when doing these projects is to focus on best practices rather than checking off tasks.