
Make your own web pages with Malicona and Saskotaro.
To start you need to learn basic html.
Now you are ready to get started.
Nearly all of the time HTML works by using tags in pairs. So right from the start get into the habit of writing your opening and closing tags together. What are tags?
Tags are commands or instructions written in between angle brackets. < >
Look at Malicona above pulling the tags open with her tail to start.
Think of the back slash as closing the gate. Look at Saskotaro pushing the tags closed to finish.
So, lets get started. First you are going to define your document, type. We are writing an html document so we tell the browser this by writing
<html>
</html>
It doesn't mater if you write next to each other like this <html></html> or as I've written it above. Both ways work.
Most html documents have two parts a head and a body. The next two tags you want to put in are the body tags, like this:
<html>
<body>
</body>
</html>
but you'll see in a minute that this starts to get a little clumsey and makes your code more difficult to read. What is important is that the body tags are together inside the html tags. This is called nesting and we will talk about this a little more later.
The body section is what will appear in your web browser. Now you want to write something. Traditionally the first thing people write is "Hello World!", so lets try it. Inside your body tags we are going to put two paragraph tags, they look like this... <p></p>.
<p>Hello World!</p>
</body>
</html>
Save your document:

To view your document: