Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to link my Google Domain to a custom HTML webpage

My team and I have recently purchased a Google Domain, but when trying to have the website it is connected to, it only gives us the options of website builders. We have a GitHub repository with all of our files that we want it to host, but again, only website builders. Can I make my Google Domain connect to a custom HTML page?

like image 424
Pacific Bird Avatar asked May 07 '17 19:05

Pacific Bird


People also ask

How do I make my domain name a website HTML?

To set up a domain name for an HTML website, you will need to register the domain name with a domain name registrar. Once the domain name is registered, you can then point the domain name to your HTML website.

Can you add a custom domain to Google sites?

You can use a custom domain for a site published on new Google Sites. Using a custom domain can make it easier for people to find and remember your site with a web address like www.yourdomain.com. To use a custom domain for your site, you can: Select a domain from your Google Domains account (if you have one).


1 Answers

You can host your content on GitHub and serve them with GitHub Pages

https://pages.github.com

You can have your Google Domains domain point to it.

https://help.github.com/articles/using-a-custom-domain-with-github-pages/

You'll need to add a CNAME file to your repo with your domain URL in it. Add it manually or follow the instructions here.

https://help.github.com/articles/adding-or-removing-a-custom-domain-for-your-github-pages-site/

You'll need to add some A records at the Google Domains control panel with the IP addresses of GitHub's servers (currently 192.30.252.153 and 192.30.252.154).

https://support.google.com/domains/answer/3290350?hl=en

like image 122
OsakaStarbux Avatar answered Sep 28 '22 14:09

OsakaStarbux