My website isnt working #154867
-
Select Topic AreaQuestion Bodyhi so i made a "website" following BroCode's tutorial (https://www.youtube.com/watch?v=HGTJBPNC-Gw) and "hosted" my website on github using this video:https://www.youtube.com/watch?v=e5AwNU3Y2es however when i go the website im met with this: i think im doing smth wrong but i followed the host tutorial step by step so please help 😭 🙏 my website: https://fridgedoors.github.io/website/ |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
|
Hi @fridgedoors, Taking a look at your repo I noticed that the structure is wrong, you need an Your structure is as follows:
This is how it should be:
So basically you have to delete the |
Beta Was this translation helpful? Give feedback.
-
|
Welcome to the GitHub Community, @fridgedoors , we're happy you're here! You are more likely to get a useful response if you are posting your question(s) in the applicable category. Check out this Guide on how to post in the right category. It'll ensure your questions and discussions reach the right people faster! This particular discussion belongs in the Pages category, I've gone ahead and moved it for you. Good luck! |
Beta Was this translation helpful? Give feedback.
-
|
I had the same issue on my website (Carpet Heroes) turns out my |
Beta Was this translation helpful? Give feedback.

Hi @fridgedoors,
Taking a look at your repo I noticed that the structure is wrong, you need an
index.htmlin the root.Your structure is as follows:
/website├── /.github/workflows└── /HTML├── /audio├── /images├── index.html└── lyrics.htmlThis is how it should be:
/website├── /.github/workflows├── /audio├── /images├── index.html└── lyrics.htmlSo basically you have to delete the
HTMLfolder and put its contents in the root as shown above.