Check out the playlist of web project tutorials here! ua-cam.com/play/PLnKe36F30Y4bLhA-st9sC4ZthyV7nsL2Q.html Got a tutorial suggestion? Let me know down below!
My brother in Christ this is THE VIDEO. Thanks a lot for skipping the bs and going straight to the point. As a token of my appreciation here is my humble 'subscribe' button hit.
i can see different things in setting, when i cleck the source " i can see only two things, 'github actions', 'deploy from branch' but it doesnt work when i click either one.
The answer for this is you need to select "NONE" and save once you do that back to deploy from branch again select again the main and save then you will see it will genarate static website for you, hope it will help those who has a problem on this.
Thank you so much for the best tutorial vid! I had spent hours to figure out how to desply a website on github pages and finally here I am. Problem solved :) Great video!
i had many more files, like style.css, some js files and pictures in the website, if any of you have tried, it was not working. The fix is instead of /root in hosting pages, select /docs
how to make landing page bro?, my github dont to execute all my html, css and js, do you have a solutions?, 404 not found and wait like a 10 minutes and just same, pls help
Subbed and thanks! Questions though: 1) Maximum number of repos on one account? 2) Maximum number of websites on one account with different repos? 3) How to use GIT to publish changes instantly? 4) Can others see my code and able to fork it? Thank you Kenny for this awesome tutorial!
Not sure about the actual memory usage, but if public, you can host many static websites. I have 20+ repos hosted due to my JS game projects tutorial series, which you can find on my channel, or on kennyyipcoding.com . Git is a separate tool that I haven’t made a video on yet. Maybe I’ll add that to the list! Others will be able to see and copy your code if it’s public. if you want to be able to host your website on GitHub and keep it private, you will need to pay for a subscription. Aside from that everything else is free !
❤❤❤thank you so... Much this video is simple and straight forward. I was able to upload my website in few minutes because of this tutorial, may Allah bless you abundantly Thank you once again
I do the exact same thing but it doesn't give me a link Edit: Nevermind I opened it again and this time it showed up. This time I chose from /root instead of /docs so my guess is the /root made it work
@@saisandeepmandapaka1561 i really don't know how to help, that pages stuff is still confusing to me. Although i remember sometimes it needed like 5-210 minutes to generate a working link
This means that your repo is missing an index.html file, which should be at the root level of your directory. Make sure you updated your repo with your files.
Thank you for the video, one small note, looks like it's case sensitive, my page didn't work with "Index.html", I had to make it lowercase "index.html" and it worked.
Thanks for the information:- "Only static website can be hosted in Github". I had searched lot(Google as well in youtube) as how to host node website. I did hosted a static website using github and I assume that node application will also hosted same manner using github. Now i understood for node app it will not work using github.
Has anyone ever had issues with their Github account where you couldn't publish a repo to Github pages, the Save button is constantly disabled and you have this message: Your GitHub Pages site is currently being built from the master branch. Learn more. However nothing is ever built...
Thanks for the video. I have two questions please. 1. Must we name our file as "index.html" ? 2. Then, I can only see "None" option in the source. How can I solve this problem? Thank you!
i am having an error not found. i tried what you said at the reply at the bottom comment. i also tried what he tried using /doc instead of /root yet same error then i look at the "actions" there is an error in build it says the error is from "build with jenkyll"
Hello! I hope this gets seen, it's been about 2 years since this video was published.. Can you please make a tutorial of how you got the pages to link together? Time stamps of 4:45-4:52 as visual example of what I'm referencing. I've tried just standard linking between pages like I do in Visual Studio code, but it's failing and I'm not finding a youtube tutorial on how to do it nor in the resources on github pages. I'm looking to do exactly what you did to link your 2 pages, and I'm at a loss atm on a solution...
@@KennyYipCoding Right, yes an html href tag, but it won't link properly between the files on github pages. Could you make a tutorial showing how you got it to work with linking them together please?
If your website uses images and fonts, you need to provide those too. Otherwise, your html file wouldn’t know where to find these images/fonts if they’re not stored together
seems the name of html file must be index.html? And even i ve upload my files,the page still can't download css file from outside, but when i make the css into html file, it works, i don't know why
Thank you for the great video. I am following a path from CodeCademy and it had me upload a site. The site didn't go up immediately for some reason. I followed your video to ensure that I did everything correct and looked at my settings and all was good. It took almost 30 minutes to upload and go live. Just a heads up for anyone whos site doesn't go live in 1-10 minutes it may take longer.
I have one index.html but I also have other HTML files. After hosting pages only index.html is working while other HTML file are not . What should I do?
Do you have links to these other web pages? Make sure you have the correct path to these html files. You can also try typing that path in on the url. For example if you have an about html, type in [website]/about.html
i built a website and successfully uploaded iton my repository but the images on the website are not displaying, any idea how i can solve this issue? thank you so much
what does a landing page for your personal website look like? so when you go to your profile, it brings you to your personal website? how does it work.
Thank you so much. I managed to create the page but i have a problem. I cant update the page with "git push origin master" or "main" . I am getting a fatal error. Any idea?
Does anyone know why you can only deploy a static website to github?? Like why cant you deploy one that contains server code? Does anyone know any web hosts that are free where you could deploy a website that is using web code like python with flask or socket?
I do all of steps but in pages write your personal host but i want to publish and get publish url for my project that can be search on internet and see project would you pleas help me?
In source.. I gave...'github actions' and branch as 'main' Then got ' your site is live at.... Link' After 1 hour also... I clicked that link... But my site is not opening. Why? Pls help
Great video. But I have an issue. I followed step by step as you described in your video but my site only displays my repository name and doesn’t display anything that I coded in my html file. Is there something I did wrong?
You can modify the code directly on the GitHub website if it’s a quick change. Or you can drag and drop and it’ll replace the existing files with new files. Or you can use git to commit and push the changes. Either way you need to make sure your changes are applied to the files in your GitHub repo. The website will update automatically in a few minutes.
Quick Question! I uploaded my files using drag and drop but instead of dragging the files only, I uploaded the folder containing the files. Now Github doesn't read the folder, what do I do in this case..? Thanks in advance! :D
It should bring you to an upload page, GitHub probably didn’t register the drag and drop so if it brings you to an upload page, you can drag and drop the folder again
If you go to your GitHub repo, you can click the Add file button (next to the green code button) and select upload files. This will bring you to the upload page where you can just drag and drop your folder.
you dont need to make a new repo, if you update a file, for ex) adding more html content to a file, after a few minutes, your github website should update to reflect those new changes
Check out the playlist of web project tutorials here!
ua-cam.com/play/PLnKe36F30Y4bLhA-st9sC4ZthyV7nsL2Q.html
Got a tutorial suggestion? Let me know down below!
Sir, the images in my website are not loading in it. Pls give me solution
do we need any consistent network source like wifi for fast processing?
mewo
My brother in Christ this is THE VIDEO. Thanks a lot for skipping the bs and going straight to the point. As a token of my appreciation here is my humble 'subscribe' button hit.
This is the video I shall go to from now on to get my tutorials. Thank you. First guy to actually tell me how to deploy a webiste
After watching so many videos, this is the one that made deploying websites on Github super clear. Thanks!
fr
It works, thank you, I managed to create and publish a full website from my phone without using the PC.😻😻😻
Thank you so much! In simplest terms and straight to the POINT unlike other videos.
i can see different things in setting, when i cleck the source " i can see only two things, 'github actions', 'deploy from branch' but it doesnt work when i click either one.
It will automatically generate your static website for you
The answer for this is you need to select "NONE" and save once you do that back to deploy from branch again select again the main and save then you will see it will genarate static website for you, hope it will help those who has a problem on this.
same 😢😢
Thank you so much for the best tutorial vid! I had spent hours to figure out how to desply a website on github pages and finally here I am. Problem solved :) Great video!
Great video man !!! Straight to the point without complicating things. Thank you so much ❤️
i had many more files, like style.css, some js files and pictures in the website, if any of you have tried, it was not working. The fix is instead of /root in hosting pages, select /docs
bro, this is a time saver. needed that.thanks!!
This is a great video, and the only one that actually helped me! Love your channel, keep the helpful videos comin'!
thanks for getting straight to the point, without any unnecessary chit chat!
Your channel is so underrated! Thank you for some great videos
This had to have been the most simple explanation that I've come across for this. Thank you a bunch
Long live Friend!! Clear and specific instructions. I hosted my website in less than 10 minutes.
how to make landing page bro?, my github dont to execute all my html, css and js, do you have a solutions?, 404 not found and wait like a 10 minutes and just same, pls help
I love this tutorial! It's simple and short and easy to follow! Many thanks!
Subbed and thanks!
Questions though:
1) Maximum number of repos on one account?
2) Maximum number of websites on one account with different repos?
3) How to use GIT to publish changes instantly?
4) Can others see my code and able to fork it?
Thank you Kenny for this awesome tutorial!
Not sure about the actual memory usage, but if public, you can host many static websites. I have 20+ repos hosted due to my JS game projects tutorial series, which you can find on my channel, or on kennyyipcoding.com .
Git is a separate tool that I haven’t made a video on yet. Maybe I’ll add that to the list!
Others will be able to see and copy your code if it’s public. if you want to be able to host your website on GitHub and keep it private, you will need to pay for a subscription. Aside from that everything else is free !
Great video man !!! Straight to the point without complicating things. Thank you so much for the extra tip❤
Thanks for the clarity man, this video was really helpful and educational.
Brooo the tip you gave in the last is EPICCCC
The pop-up didn't appear with the link to my site...any ideas? Thanks
❤❤❤thank you so... Much this video is simple and straight forward. I was able to upload my website in few minutes because of this tutorial, may Allah bless you abundantly
Thank you once again
That was very helpful! Thanks! I just signed up for github, and I published my website.
I do the exact same thing but it doesn't give me a link
Edit: Nevermind I opened it again and this time it showed up. This time I chose from /root instead of /docs so my guess is the /root made it work
@@saisandeepmandapaka1561 i really don't know how to help, that pages stuff is still confusing to me. Although i remember sometimes it needed like 5-210 minutes to generate a working link
Thanks bro. have been stuck for ungodly amount of time.❤
Thank you so much! This entire time I thought it was mandatory to use my ysername. I had everything in separate folders ordered by project name.
Follow your step, but there is no URL pop up on my github settings. help ?
In first sentence the whole confusion gone .. server related issue . Thanks brother
any idea what to do for alternative
Thanks for the awesome, precise and to-the-point video.
I am getting readme file as the result on the hosted website and not the index.html one. Any solutions?
This means that your repo is missing an index.html file, which should be at the root level of your directory. Make sure you updated your repo with your files.
Thank you for the video, one small note, looks like it's case sensitive, my page didn't work with "Index.html", I had to make it lowercase "index.html" and it worked.
Thanks for the information:- "Only static website can be hosted in Github". I had searched lot(Google as well in youtube) as how to host node website. I did hosted a static website using github and I assume that node application will also hosted same manner using github. Now i understood for node app it will not work using github.
Bc, they'd lose ton of money if they allowed that for free.
Thanks so much, mate! Straight to the point, I could solve my issues with GitHub Pages and now I have my own. Cheers!
should we upgrade to pro version?
My Gosh I had so much trouble uploading my site and this video was soo good thank u so much 😄😄😄
did u publish your file to a public website for free?
thank you so much for talking about all the details!! It helps me a lot!! :)
Has anyone ever had issues with their Github account where you couldn't publish a repo to Github pages, the Save button is constantly disabled and you have this message: Your GitHub Pages site is currently being built from the master branch. Learn more.
However nothing is ever built...
Thank you. You made it so simple.
Thank you Kenny for solving my problem .
Great streamlined video Kenny. Thanks
when ever i upload my website it just shows the repository name in big letters, why help???
you need your index html file in the root folder, otherwise its probably rendering the markdown file on the page
thank you very much I just hosted mine, straight to the point
thank you!!you went straight to the point and you aced it.
Thanks for the video.
I have two questions please.
1. Must we name our file as "index.html" ?
2. Then, I can only see "None" option in the source.
How can I solve this problem?
Thank you!
Yes because “index.html” is the landing home page. Otherwise the browser will not know which file to load first when you land on the website.
@@KennyYipCoding
Thank you sir.
What about css?
Can it also be in "index.css"?
@@ayindejubrilolarewaju8193 CSS and JS files can be whatever
sub pages are not working it is showing that There isn't a GitHub Pages site here.
So I can't do something like setting up a Flask backend that will be called later by another device?
i am having an error not found. i tried what you said at the reply at the bottom comment. i also tried what he tried using /doc instead of /root yet same error then i look at the "actions" there is an error in build it says the error is from "build with jenkyll"
I see this same thing, did not show a link after I hit save
Nvm, I read some more comments and refreshing did work
I just want to ask why my webpage doesnt apply my css and javascript file when I open it in web. I uploaded all the files needed in github
How about moving the #about from your extension? Can you do that?
Hello! I hope this gets seen, it's been about 2 years since this video was published.. Can you please make a tutorial of how you got the pages to link together? Time stamps of 4:45-4:52 as visual example of what I'm referencing. I've tried just standard linking between pages like I do in Visual Studio code, but it's failing and I'm not finding a youtube tutorial on how to do it nor in the resources on github pages. I'm looking to do exactly what you did to link your 2 pages, and I'm at a loss atm on a solution...
What do you mean by link? You mean clicking a link from one page leading to another? That’s an html tag
@@KennyYipCoding Right, yes an html href tag, but it won't link properly between the files on github pages. Could you make a tutorial showing how you got it to work with linking them together please?
what about the situation, where I have html file in src folder
Your video helped me a lot on hosting , thanks bro.
WHen I upload files... Do I need to upload fonts and images and stuff too??? Or just the html, css, and js files?
If your website uses images and fonts, you need to provide those too. Otherwise, your html file wouldn’t know where to find these images/fonts if they’re not stored together
@@KennyYipCoding Thank you! My website works 100% now
Didn’t work for me.. it never pops up and says my site is ready and I followed it step by step.
seems the name of html file must be index.html? And even i ve upload my files,the page still can't download css file from outside, but when i make the css into html file, it works, i don't know why
Thank you for the great video. I am following a path from CodeCademy and it had me upload a site. The site didn't go up immediately for some reason. I followed your video to ensure that I did everything correct and looked at my settings and all was good. It took almost 30 minutes to upload and go live. Just a heads up for anyone whos site doesn't go live in 1-10 minutes it may take longer.
I have one index.html but I also have other HTML files. After hosting pages only index.html is working while other HTML file are not . What should I do?
Do you have links to these other web pages? Make sure you have the correct path to these html files. You can also try typing that path in on the url. For example if you have an about html, type in [website]/about.html
@KennyYipCoding what if i have made a personal website with html,css with flask and python and i want to publish it as a website i cant?
Finally, it worked for me! Thank you so much.
Very helpful! thank you! 👏
What if my index.html file is inside another folder in the main branch?
Thank you so much. I've been in diploma, now degree. And still no subject on getting online. How awful. Thank you again.
Thank you for this! Helped a ton
Great video! Are there ways to implement widgets onto a site via guthub?
Crystal clear instruction! 100/100!
thx! This was helpful and straight to the point
my source drop down doesnt have an option for "master"
this was very helpful, thank you !
u are life saver bro thank u so much u removed my biggest problem in mins
I had to login and give you a sub bcos you help me a lot of time. Thanks dude
i built a website and successfully uploaded iton my repository but the images on the website are not displaying, any idea how i can solve this issue? thank you so much
what does a landing page for your personal website look like?
so when you go to your profile, it brings you to your personal website?
how does it work.
hello, my pages options are different so I couldn't reach my web link. would you please help with that?
This helped me out a lot! Thank you so much!
Thank you so much. I managed to create the page but i have a problem. I cant update the page with "git push origin master" or "main" . I am getting a fatal error. Any idea?
Can Pages look into a folder to find .html so that it does not grab only the readme? Or will I have to move the html out of the folder
Your index.html should be in the root folder since that’s the landing page, any other html files can be in other folders
it's weird, it's keep saying that my file is not found, i wonder what's wrong
can i do the same with laravel project?
How can you do this if you have a custom domain?
Thanks man this video was so helpful
Why does my say live instead of publish? Does it matter? And my website works but my back ground image and all that doesn’t it.
Why my website assets are indexed by google?
Can you upload react projects ?
Does anyone know why you can only deploy a static website to github?? Like why cant you deploy one that contains server code? Does anyone know any web hosts that are free where you could deploy a website that is using web code like python with flask or socket?
Did you ever get an answer to this? I'm running into this issue right now
@@ultimatesubzero1 Not quite, but I think AWS is a good solution
What is an index html and an about?
I do all of steps but in pages write your personal host but i want to publish and get publish url for my project that can be search on internet and see project
would you pleas help me?
In source.. I gave...'github actions' and branch as 'main'
Then got ' your site is live at.... Link'
After 1 hour also... I clicked that link... But my site is not opening. Why? Pls help
Can you upload React or Vue page like that?
what pc do you use
Great video. But I have an issue. I followed step by step as you described in your video but my site only displays my repository name and doesn’t display anything that I coded in my html file. Is there something I did wrong?
Your landing page should be an index. html file
I'm unable to connect my Google domain with GitHub custom domains, Can you help?
Please did you use root or docs source ?
Thanks you, but this means when I apply any change on my website codes, I will have to reupload the website file codes again, or?
You can modify the code directly on the GitHub website if it’s a quick change. Or you can drag and drop and it’ll replace the existing files with new files. Or you can use git to commit and push the changes. Either way you need to make sure your changes are applied to the files in your GitHub repo. The website will update automatically in a few minutes.
I was able to get as far as changing to public and saving the branch settings, however, I'm not seeing a link to my page.
Make sure it’s public and you have an index.html. The link should be in the form of . github . io
Quick Question! I uploaded my files using drag and drop but instead of dragging the files only, I uploaded the folder containing the files. Now Github doesn't read the folder, what do I do in this case..? Thanks in advance! :D
It should bring you to an upload page, GitHub probably didn’t register the drag and drop so if it brings you to an upload page, you can drag and drop the folder again
If you go to your GitHub repo, you can click the Add file button (next to the green code button) and select upload files. This will bring you to the upload page where you can just drag and drop your folder.
Hlo i cant able see my project. It showing readme txt in webpage
Thanks a lot man straight to the point ❤
Can you update the site via committing new/updated code like normal repositories....or do you need to make a new rep for every update to the site?
you dont need to make a new repo, if you update a file, for ex) adding more html content to a file, after a few minutes, your github website should update to reflect those new changes
men can i upload to my assets folder?