Getting Started: Create your First Web Page!
Let's create a webpage using HTML, then view it in a web browser.
OK, lets get straight into it. Here, you will learn just how easy it is to create a web page. In fact, by the time you've finished with this web page, you will have created your own web page!
When you create a web page you will usually do something like this:
- Create an HTML file
- Type some HTML code
- View the result in your browser
- Repeat the last 2 steps (if necessary)
Create a Webpage
OK, let's walk through the above steps in more detail.
-
Type some HTML code
Type the following code:
-
Repeat the last 2 steps until you're satisfied with the result
It's unrealistic to expect that you will always get it right the first time around. Don't worry — that's OK! Just try again and again — until you get it right.
Part of the fun of creating web pages is experimenting with different elements, styles, approaches, etc, and then checking out the result.
Explanation of code
OK, before we get too carried away, I'll explain what that code was all about.
We just coded a bunch of HTML tags. These tags tell the browser what to display and where. You may have noticed that for every "opening" tag there was also a "closing" tag, and that the content we wanted to display appeared in between. Most HTML tags have an opening and closing tag.
The next lesson goes into a bit more detail about HTML tags.