--- title: 'What is {% data variables.product.prodname_pages %}?' intro: 'You can use {% data variables.product.prodname_pages %} to host a website about yourself, your organization, or your project directly from a repository on {% data variables.product.prodname_dotcom %}.' allowTitleToDifferFromFilename: true redirect_from: - /articles/what-is-github-pages - /articles/user-organization-and-project-pages - /articles/using-a-static-site-generator-other-than-jekyll - /articles/mime-types-on-github-pages - /articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio - /articles/about-github-pages - /github/working-with-github-pages/about-github-pages - /early-access/github/articles/managing-your-disabled-github-pages-site - /pages/getting-started-with-github-pages/about-github-pages product: '{% data reusables.gated-features.pages %}' versions: fpt: '*' ghes: '*' ghec: '*' topics: - Pages --- ## About {% data variables.product.prodname_pages %} {% data variables.product.prodname_pages %} is a static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository on {% data variables.product.github %}, optionally runs the files through a build process, and publishes a website. You can see examples of {% data variables.product.prodname_pages %} sites in the [{% data variables.product.prodname_pages %} examples collection](https://github.com/collections/github-pages-examples). ## Types of {% data variables.product.prodname_pages %} sites There are two types of {% data variables.product.prodname_pages %} sites. Sites associated with a user or organization account, and sites for a specific project.
| Property | User and organization sites | Project sites |
|---|---|---|
| Source files | Must be stored in a repository named <owner>.github.io, where <owner> is the personal or organization account name |
Stored in a folder within the repository that contains the project's code |
| Limits | Maximum of one pages site per account | Maximum of one pages site per repository |
| Default site location | http(s)://<owner>.github.io |
http(s)://<owner>.github.io/<repositoryname> |
| Default site location with subdomain isolation enabled | http(s)://pages.<hostname>/<owner> |
http(s)://pages.<hostname>/<owner>/<repository>/ |
| Default site location with subdomain isolation disabled | http(s)://<hostname>/pages/<username> |
http(s)://<hostname>/pages/<owner>/<repository>/ |