Stats Preview Card

Solution retrospective
how do I get my styles on the website? How do I center a grid
Please log in to post a comment
Log in with GitHubCommunity feedback
- @ChrisAndrewsDev
Hey @lee-fentress!
It seems like your relative link path is a bit off in your HTML (where you are linking the .css stylesheet) -
<link rel="stylesheet" href="/stats preview card/actual project/images/styles.css">
It should be something like this:
<link rel="stylesheet" href="./styles.css">
Typically when you link things from the same general directory or workspace:
- "./" means the same level (or directory) as the current file
- "../" means go up one level (or directory) from the current file
Marked as helpful
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord