Tuesday, January 23, 2007

Basic Tag HTML Programming


HTML started with <HTML> tag and ended with </HTML> tag. Inside <HTML></HTML> tag there are gotten two parts that is a HEAD and the BODY. HEAD started with <HEAD> tag and ended with </HEAD> tag .
The BODY started with <BODY> tag and ended with </BODY> tag.

If we write this code then will be like this :
<HTML>
<HEAD></HEAD>
<BODY>
</BODY>
</HTML>

In inside of HEAD, we can put the TITLE tag to give a title in the website, to make a contents website, we can write in the between of tag <BODY></BODY>.

For example :
<HTML>
<HEAD><TITLE>Let's learn HTML Programming</TITLE></HEAD>
<BODY>
This is my first web its not difficult isn't ?
</BODY>
</HTML>

Save and gived name "myweb.html"
Make sure the extention is .html
Then open this file with IE, click file menu then open. Click browse and open your file... And show the result....


0 Comments:

Post a Comment

<< Home