Welcome to Zortin.com

Homepage
Fav.  |  About  |  G. search  |  Keywords  |  Blog

Search for
Click here for a great link





CODES  All Codes »
GENERATORS ---------------- All Generators »
SCRIPTS  Latest Scripts »
LAYOUTS & GRAPHICS
TOOLS  All Tools »
TUTORIALS  Latest Tutorials »
LESSONS

Easy HTML Tutorial
Easy HTML tutorial


HTML sounds a little confusing if you are hearing about it for the first time
and since you started reading about it now, it will propably interest you
HTML is interesting and maybe more interesting than you think
This page will describe what HTML is in a very easy way, so if you are already an expert, you might find some things really simplified

So, What is HTML?
HTML is a group of codes that you write
What type of codes?
Depends what you want to write

Let us say that you want to write "Hello" in red color
How can you do that?
Will you paint Hello red using a Red-paint or will you cut Hello untill it bleeds?
Will you submerge Hello in a pan of boiling beetroots or squeeze some cherries on it?
Nop
You will use HTML to do that!

To write Hello in Red, you use the following HTML code:

Looks like: Hello

Notice from the above code that the color-code for red is FF0000
so, the above HTML will display Hello in red color
You can save the above code in any page, and it will show a red Hello
Now that you've seen the above little HTML code
You are propably thinking that you can simply change hello to any other word,
yes
You are getting to know HTML now
To write Good morning, you just get the above HTML code and replace Hello with Good morning

Looks like: Good morning

What if you want to change the color to blue?... simple, just get the blue color code, which is 0000FF

The code will be like that now:

Looks like: Good morning

When you put the above HTML code in any page on the internet, it will show Good morning in Blue
Go ahead, save it somewhere, try your Myspace profile for example!
Copy paste the above code there, then preview your profile
Yep, that is it

So, HTML is like that
Now, let us say you wish to display an Image
like show an image in your profile
It is simple, just use HTML!

Lets for example display the logo of Zortin.com using HTML
This can be done by using the following code

Looks like:


So, in the above code, you specify the link of the image and use it to display that image
ofcourse you have to upload the image somewhere first, to get that link, which is called the Image URL

Hopefully by now you should have an idea of what HTML is
Just for the record, HTML stands for Hyper Text Markup Language in case you need that
You can do all sort of things with HTML
actually not that much, because HTML is not that powerfull!
HTML allows you to create Tables, show images, create links, show lines, etc...
however, PHP has much more abilities, and is much smarter
To learn about PHP, you can go to the Easy PHP tutorial available at Zortin.com


THE END