
For this first chapter we will be focusing more on HTML. HTML is basically what the web is made of. But first you need to know what a URL is. A URL is something that tells the browser where to go. For instance, when you type in NeoHideout's URL it would be http://neohideout.co.nr. The code for a page is created in an editor. Most computers have editors such as notepad on there already, but if yours doesn't, try HTML kit.
To open up notepad go to Start >> Programs >> Accesories >> Notepad. To download HTML kit, look it up on the infamous Google :D. Great, now you are ready to get started :D.

Every webpage code starts with:
And ends with:
A link is something the targets to another page (which you probably know by now). The basic code is:
To make the link open in a new window you have to target it somewhere by using a tag. So it would be like this...
Which refers to the frames chapter :D. IMPORTANT: All URL's should start with

To make an image show up on your page you have to get the URL of the image by right clicking and going to
"Properties...". Copy the URL it gives you from there. Then enter it in this code (you will memorize it soon):
If you want to resize the image, smaller or bigger, use this code:
Where it says WIDTH HERE enter the width (in pixels) and where it says HEIGHT HERE enter the height (also in
pixels). Usually these types of codes can take in any add-in such as width and height, all you have to do
is lala="lalala" (of course replace the lalala's). So if you wanted a border, all you have to do is add
the border tag, which is
Now it's time to join the link and the image code together! If you want to have an image link to somewhere
else, here's your code:
As you can see, the image code is in the place where you would normally put text.
For some odd reason, when you link an image to another place there's a border added. To get rid of that
ugly blue border, add the border tag you see above and put it after the
To make the link open up in a new window, use the target tag and insert it after the

So how exactly do you make a break? This is very simple and handy when you make a list.
Pressing the return or enter key will not work, so use this code instead:
After (I added the break code in between the "Here"s):
Here
Here
Got it? Get it? Good. To make a new paragraph use this code:
There we go :P

More codes!
Center
Put
Line/Divider
To make a line just use this code:
Bullet Points
Not much to say about this one XD. But it's pretty handy. Use
Textarea
Textareas are the things that are used a lot in this tutorial! They are for showing codes. To make one, put
I hope you realize that there are MUCH more codes than the above!

Text codes
Here are some text codes you can use... try to have 'em memorized :D.
Underline
To underline text put
BOLD
To make text bold put
Italics
To make text italic put
STRIKE OUT
To make text Crossed out put
Make text Bigger or
Smaller
To make text bigger or smaller use this code:
To make it bigger change the

Finishing up
Have you finished up choosing your codes and finishing up your page? Well now all you have to do is save it!
Just go to file >> save. If you want this page to be your home page, save it as index.html. If not, replace "index" with a page name that's short and sweet and that you can remember what kind of page it is. Be sure to save it as .html or else it
won't be a web page!
Then save the file in the appropriate folder and now you can see your new page! Congrats. Well, that basically concludes our first chapter. Ciao!
~Nicolette :D