I'm struggling with my first little coding project of HTML, CSS, and JS. On the VS code locally, the website looks as intended here However when deploying it via git pages, it looks like this here My VS code and git repository match in terms of file location, so I'm not sure why the console can't find the other files here
Here is a link to my repository https://github.com/l-antonello/prework-study-guide and the site https://l-antonello.github.io/prework-study-guide/
Thanks, any advice would be appreciated.
So I tried pushing and pulling from VS Code to github and sometimes it would work, but I think I had too many folder desitnations? So then I just manually uploaded the code pages, I know thats not the best way of going about it, which is why I have so many commits lol.
I also had an issue of the README publishing instead of the HTML, but moving it to another folder seemed to help.
You have the link to the style file wrong, currently is like this:
<link rel="stylesheet" href="./assets/style.css">
And it should be like this by checking your folder structure:
<link rel="stylesheet" href="prework-study-guide/assets/style.css">