You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTML is the markup language that forms the backbone of the internet. In this course, you'll learn how to build a simple website using HTML to set as your browser's default start page. This is the first step in your journey to become a developer—how exciting!
What is HTML?
HTML stands for Hyper Text Markup Language. HTML isn't a programming language. It's actually instructions on the structure of your website. Your browser reads the HTML document, and displays it.
Where does your website begin?
When someone enters a web address, the web standards will automatically look for a file called index.html, and display it in your browser. Most people call this your homepage.
Step 1: Hosting your website
It isn't enough to simply create a site on GitHub. You also have to deploy it to a web host that's connected to the internet. In this course we'll use GitHub Pages, but you could publish the HTML to any static host.
In the "GitHub Pages" section, use the Select source drop-down menu to select master as your GitHub Pages publishing source.
Return to this issue.
I may take up to a minute to respond as I wait for GitHub Pages to create a deployment of your repository. If you don't see anything after a minute, refresh this page.
It's not the most special-looking site just yet, but hey, it's a website! Web hosts (and GitHub Pages) look for a file titled index.html and serve that up. Since there's no index.html file in our repository, GitHub Pages displays the contents of the README by default. Let's change this by adding the index.html file to our repository.
⌨️ Activity: Add index.html
To help you get started, I have already created an index.html file for you on a branch called: add-index. All you need to do is create the pull request. Don't worry, I'll help you!
Create a pull request. You can either use this direct link, or go to the "Code" tab, click New Pull Request, select base: master, and compare: add-index.
Add a descriptive title to your pull request, something like "Add the index.html file".
Let's build your first website
HTML is the markup language that forms the backbone of the internet. In this course, you'll learn how to build a simple website using HTML to set as your browser's default start page. This is the first step in your journey to become a developer—how exciting!
What is HTML?
HTML stands for Hyper Text Markup Language. HTML isn't a programming language. It's actually instructions on the structure of your website. Your browser reads the HTML document, and displays it.
Where does your website begin?
When someone enters a web address, the web standards will automatically look for a file called index.html, and display it in your browser. Most people call this your homepage.
Step 1: Hosting your website
It isn't enough to simply create a site on GitHub. You also have to deploy it to a web host that's connected to the internet. In this course we'll use GitHub Pages, but you could publish the HTML to any static host.
⌨️ Activity: Turn on GitHub Pages
master
as your GitHub Pages publishing source.I'll respond in this issue after GitHub Pages has finished deploying your site.
The text was updated successfully, but these errors were encountered: