Search code examples
githubgithub-pages

Web is not applied js and css


I don't know why my web does not apply js and css after using pages of github. My web link: https://binhxoay1234.github.io/vozer.github.io/, and web git hub: https://github.com/binhxoay1234/vozer.github.io. Can you help me with this, i have been sitting for 2 hours but still have no solution i'm very grateful if you help me, thank you


Solution

  • The problem is your bootstrap import. I was able to get it looking like this by changing this line in the head of your index.html from

    <link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">

    to

    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">

    from the bootstrap docs.