This tutorial will help you learn a little about html.

You can find html codes :

>> HERE ( << Click ! )

HTML is the shortened word for Hyper Text Markup Language. It is a markup language used to describe a webpage.

Now, let us start by creating a web page.

Open your notepad, and copy and paste this below to it :


When your done pasting to your notepade, save your file as an html file to your computer.

You just need to change the file type from a text file to an html file.

When saving, change the ending of your file's name from .txt to .htm or .html

I use .htm because it is shorter.



Now that you have created your html file, I'll explain some things you need to know about what is in your html file at the moment.

Here is a list of the tags in your html file at the moment.


HTML Tag ~ <html>
Normally, any text between your html tags are used to describe your web pages.
Head Tag ~ <head>
The head tags are for you to use none viewable text on your webpage.
Heading Tag ~ <h1>
You can use these tags as your headings for your text. As you change the number from "1" to a higher number, the text will be seen smaller.
Paragraph Tag ~ <p>
These tags are normally used for text that will be used as a paragraph on your web page.
Closing Tags ~ </html> , </head> , </h1> , </p>
Closing tags are the ending of the effect that the html code gives to your web page.
Example :
Let's use a race for this example. This html code is the starting line for the race : <p> . And this closing html code is the finish line at the end of the race : </p> . Now, you see, that the effect of this html code will be used until you used the closing tag at the end of the race.


On your way to learning more about html, you will learn more tags that will help you on creating your web pages.


Now that we have finished learning about tags, let us talk about the layout we use when creating an html file.

We always start off with this at first, then add more codes to make the web page better.



You can find more html codes to help you improve your html designs on your web pages.

Click Here To View More HTML Codes !