how to deploy html file to github pages code example
Example: deploy html to github pages
# -> Github.com + make public repo
'username.github.io'#, where
# username is your username
# (or organization name).
# CLONE
git clone https://github.com/username/username.github.io
# COMMIT
git add --all
git commit -m "init commit"
# DONE :)
git push -u origin main
# VIEW :)
# Fire up a browser and go to https://username.github.io.