Am I likely doing something wrong since the GitHub repo of the same files does not deploy correctly? It would be great to be able to link GitHub so that I can have continuous deployment. Thank you for your help!
Let’s ignore the working site at the moment and focus on the one that’s not working. When you say it “wont deploy”, what happens exactly? Do you get a deploy error? Can you paste a log please of a deploy that doesn’t work?
Thank you, here is the Readme.md and the folder with the files (folder is called CSS), then within the CSS folder I have the index.html file and the linked CSS file.
web projects can get very complicated quickly, and so having common sense naming conventions and folder hierarchies that make sense even when its 2am and you are on a deadline is really important. I wouldn’t be doing my job right if, at this point, i didn’t encourage you to move your index.html our of your css folder and put it on the same level as that readme file.
it should always go like this, structure wise for a simple static site - commonsense foldernames, everything lowercase. index.html at the top, all assets in their proper place, all lowercase filenames, all the same file extensions, nice and tidy
and so on. you get the idea. change your folder structure around and commit to github, and then i think you will find that it will work. at the moment, you’re not pointing our robots to find the index.html because you have tucked it away in a subfolder.