This is a simple guide on learning html for anyone who wants to learn html but it's hard or difficult for them to learn. I'm trying to make this guide simple and easy to learn for anyone that is whiling to learn and whiling to read. For thoses of you who don't like reading it's going to be hard besides it's not good for your future at all. You have to learn a lot of stuff by reading. In this guide you need to have a computer or laptop that has notepad and to be able to read. Hope you enjoy the guide everyone and good luck! If this guide doesn't work I might make a video on learning html but only for friends. Besides I worked hard on making this guide and don't want my work going to waste.

Lots of people think that learning html is extremely difficult to make a website. But it's not! Learning html is just a bunch of codes put together to make a wonderful looking html site. Okay, I agree that it's difficult in the beginning but once you learned the codes to making a html site. It doesn't seem so uneasy to do. It really seems quite easy and you don't have to buy a fancy program just to use html either. All you need is a free host like Freewebs for example and a good working keyboard =D Come on people, it's not THAT hard, is it? Of course not, that is if you know or have seen websites that teach you html like my Html guide for example :3 And the most important part of learning html is to read the guide carefully. If you don't read carefully or don't read it at all then, boy are you lost. I'm not tring to be mean but hey, you have to read lots of stuff in your life to learn new things or you won't get anywhere. Edit: Made the HTML Guide short since it's not going to be done soon, so I just left the basics of html and deleted the rest.


The first thing about learning html is that the html codes are made out of tags, like this one for example: <p> There is a opening and a closing tab for most of the tags. This is a opening tag: <p> this is a close tag: </p>. See the slash on the close tag and how the open tag doesn't have a slash? If you don't type in the slash then the web browser won't regonize it as a close tab and that will make your page look goofy. If you do add in the slash at the end of each code then your be on the right track. There are lots of tags that are needed to make a site in html but soon your get the hang of it. But just so you know, learning html will take about a week or more to get the hang of and once you make your first html layout for your site. It will look weird since it's your first ever html layout and your a beginner of learning but once you keep making more and more html layouts for your site you'll be using the html codes like icing on a cake.


There are quite a few text styles that you can use for your site. Here are a few ways to style your text:

How to make your text bold you do this:
<b>This will bold your text</b>

How to italicize your text you do this:
<i>This will italicize your text</i>

How to underline your text you do this:
<u>This will underline your text</u>

Note: There are two ways to italicize your text. You can use this way: <i> or this way: <em> If you want to use more than one text style then you do this:
<b><i>Text Here</b></i>

But that's only one example that you can use. There's other ways to use the other text styles but I think one example is enough. Now let's move on.


Here I'm going to show you the html code for putting images and links on your site. This is the image code: <img src="image url here"> Where it says "image url here" you put the url of the image which can be seen by right clicking on the image you want with the mouse and go to where it says properties. Click it and the url image should be where it says "Address (URL)" and then copy and paste the link. If it has a border around the picture then type this code beside the image code which will look like this: <img src="image url here" border="0"> The html code to put on a link is this: <a href="link here"> Where it says "link here" just copy and paste the site link in the code. And you better have this code: </a> or the browser won't stop the link. So, that code with the link code should look like this: <a href="link here"></a>


On this lesson, I'll be teaching you the color chart. This is a chart with lots of different colors with codes you have to type in to get that color for your backgrounds, your text, etc. The color codes have numbers and letters. If you don't use the color codes then you'll have a white background and the text will be black. This is how you make your fonts a different color: <font color="#"> On where it says: "#" you type in the code of the color you want. Let's try making our font color sky blue. The sky blue code is "0099FF" so we type in this for example: <<font color="#0099FF"> And there you have it you changed your font color! ^-^ I would teach you on how to change your background color but I'll teach you guys that later once I teach you to make your own site layout on a future lesson. If you want to see the color chart Click Here!