Translated by Google Translate
HTML Basic Part 2
Meet Again ! as
Usual This is R1O as the guest Author. I will continue explain the part from
the first tutorial in this HTML Series. If you have not yet read the first
tutorial i suggest you to read the first one otherwise you will get lost. Trust
me ...
So far we have
write this code in our text editor
<!doctype>
<html>
</html>
And the last
discussion we talk about tag. So now
just add the <head> tag
opening and closing in the <html>
area in your text editor. Like the example below.
<!doctype>
<html>
<head>
</head>
</head>
</html>
Now, What is the
tag <head> is use for ?
The tag
<head> is use for processing advance programming stuff like javascript,
PHP, and etc..
Just remember
this “ all the cool stuff that you look
at the website is processing at here “ the <head> tag “ “.
Allright now we
gonna add <title> tag. write
this code below on your text editor. And save it. Remember the format of the
save file is .html
<!doctype>
<html>
<head>
<title>
</title>
</head>
</html>
<title> tag what’s that?
The <title>
tag is use for make title or description on the browser tab.
So now try add
the title or description. Type this code on your text editor and save it.
<!doctype>
<html>
<head>
<title>
My site
</title>
</head>
</html>
you can change
the name as you like this is only the example.
Now let’s jump to
the <body> tag. Write the code as seen on below:
<!doctype>
<html>
<head>
<title>
My site
</title>
<body>
</body>
</head>
</html>
<body> tag ?
<body> tag is use for make the appereance in the web. If
you see the website paragraph or picture it’s written this section the
<body> tag. I show you the picture so you can get the clearer picture:
You see the white
space is called the <body> area.
Where the upper left is starting point to positioning things in the website. Is
like the cartesius diagram that we learn from school in mathematic subject. The
difference is the starting point instead from the middle in website is start
from the upper left.
That’s for today. We gonna cover how to add
somes stuff in the <body> tag in the next tutorial. So stay tune !
Tags: HTML