{"id":26871295,"url":"https://github.com/codeadamca/github-pages-deploy-html","last_synced_at":"2026-05-14T21:05:42.860Z","repository":{"id":115328041,"uuid":"577400007","full_name":"codeadamca/github-pages-deploy-html","owner":"codeadamca","description":"A basic splash page for testing out the GitHub pages.","archived":false,"fork":false,"pushed_at":"2025-01-26T21:30:21.000Z","size":1300,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T19:39:37.021Z","etag":null,"topics":["deployment","git","github"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codeadamca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-12T16:46:16.000Z","updated_at":"2025-01-26T21:30:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"6cee79ad-e05d-4fc9-8fda-92449819068e","html_url":"https://github.com/codeadamca/github-pages-deploy-html","commit_stats":null,"previous_names":["codeadamca/github-pages-deploy-html"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codeadamca/github-pages-deploy-html","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-html","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-html/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-html/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-html/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeadamca","download_url":"https://codeload.github.com/codeadamca/github-pages-deploy-html/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-html/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33043280,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deployment","git","github"],"created_at":"2025-03-31T07:19:02.376Z","updated_at":"2026-05-14T21:05:42.843Z","avatar_url":"https://github.com/codeadamca.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# A Testing Repo for GitHub Pages\n\nA basic splash page for testing out the GitHub Pages feature (free hosting).\n\n\u003e This page is available to view at  \n\u003e [https://codeadamca.github.io/github-pages-deploy-html/](https://codeadamca.github.io/github-pages-deploy-html/)  \n\n## Deploy a Static Page to GitHub Pages\n\n[GitHib Pages] allows you to deploy your static HTML, JavaScript, and CSS pages to a GitHub or custom domain. To deploy a repository follow these steps:\n\n1. Create a new standard repository, let's assume it's named `github-pages`: \n\n    ![New Repository](_readme/screenshot-new-repo.png)\n\n    - Give the repo the name `github-pages-deploy-html`\n    - Give the repo a brief description `Deploying a static page using GitHub Pages.`\n    - For the rest, just leave the defaults\n    - Click `Create repository`\n\n2. Using the terminal clone the repo:\n\n    ```\n    git clone https://github.com/codeadamca/github-pages-deploy-html\n    ```\n\n3. Open the new `github-pages-deploy-html` folder using your IDE of choice. I use Visual Studio Code. Add an `index.html` and add some basic HTML content:\n\n    ```html\n    \u003c!DOCTYPE html\u003e\n    \u003chtml lang=\"en\"\u003e\n    \u003chead\u003e\n        \u003cmeta charset=\"UTF-8\"\u003e\n        \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"\u003e\n        \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n        \u003ctitle\u003eGitHub Pages\u003c/title\u003e\n    \u003c/head\u003e\n    \u003cbody\u003e\n        \u003ch1\u003eHello GitHub Pages!!\u003c/h1\u003e\n    \u003c/body\u003e\n    \u003c/html\u003e\n    ```\n\n4. Push the changes to your GitHub repo:\n\n    ```\n    git add .\n    fit commit -m \"Added home page\"\n    git push origin main\n    ```\n\n5. Using the browser, navigate back to `githib-pages-deploy-html` repo, click on the `settings` tab, and then `Pages`.\n\n6. Choose `Deploy from branch`, the branch name and folder you want to deploy, then click save:\n\n    ![GitHub Pages](_readme/screenshot-pages.png)\n\n7. Wait for a minute or two and then the GitHub URL will be functional. The URL will be:\n\n    ```\n    http://\u003cREPO_NAME\u003e.\u003cGITHUB_USERNAME\u003e.ca/\n    ```\n\n## Custom Domain\n\nYou can use a custom domain (or subdomain) you have registered from a domain name provider. \n\nGo back to the repo settings and choose `Pages`. Enter the custom domain, choose whether or not to `Enforce HTTPS`, and click `Save`:\n\n![Custom Domain](_readme/screenshot-custom.png)\n\nLog in to your domain name provider and navigate to your domain name DNS settings. Add four A records pointing the domain to GitHub:\n\n```\n185.199.108.153\n185.199.109.153\n185.199.110.153\n185.199.111.153\n```\n\nIn my domain name provider the settings looks like this:\n\n![DNS Settings](_readme/screenshot-dns.png)\n\nFor more information on setting up your custom doamin checkout the [GitHub Documentation](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site).\n\n***\n\n## Repo Resources\n\n* [GitHib Pages](https://pages.github.com/)\n* [GitHub - Custom Domain Documentation](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site)\n\n\u003cbr\u003e\n\u003ca href=\"https://codeadam.ca\"\u003e\n\u003cimg src=\"https://cdn.codeadam.ca/images@1.0.0/codeadam-logo-coloured-horizontal.png\" width=\"200\"\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeadamca%2Fgithub-pages-deploy-html","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeadamca%2Fgithub-pages-deploy-html","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeadamca%2Fgithub-pages-deploy-html/lists"}