Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @shamilussainc

    Posted

    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.css

    to 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 helpful

    0