@PhiThai1309Submitted over 2 years ago
Shamil ussain c
@shamilussaincAll comments
- @shamilussaincPosted over 2 years ago
Hey @PhiThai1309, Nice work.
But there is a small issue which prevents loading your CSS files. I have checked your code and where you specified
<link rel="stylesheet" href="style.css">
this will look for the css file in the root directory ie, https://phithai1309.github.io/style.cssto connect with CSS file in the same directory you have to specify
<link rel="stylesheet" href="./style.css">
which will try to get https://phithai1309.github.io/nft-preview-card-component-main/style.css as ./ tell that the file is located in the same folder as the requesting file.hope it will helpful. happy learning.
Marked as helpful0