3-column preview card component used html and css

Please log in to post a comment
Log in with GitHubCommunity feedback
- @marviecephas
I've seen the error.... the file path in your github is wrong... I had similar problems myself.
Instead of this in your html;
<link rel="stylesheet" href="/projects/front end mentor/3-column-preview-card-component-main/normalize.css">
<link rel="stylesheet" href="/projects/front end mentor/3-column-preview-card-component-main/all.min.css">
`<link rel="stylesheet" href="/projects/front end mentor/3-column-preview-card-component-main/style.css">`
Use this;
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="all.min.css">
<link rel="stylesheet" href="style.css">
Marked as helpful - @abie237
Review this . They may be an error somewhere with the link to the styles files . Or you did not deploy it correctly
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