Today | Home Visual Basic HTML Scripts |
This week | Feed Back |
This Month | Guest book |
|
HTML as you all know stands for Hyper Text Markup
Language. It is the Language of the Web. It is just a way of telling your
browser what is where and in which format.
The instructions you give using plain text are interpreted by the browser to present the contents in a stylized manner. So it means HTML files are essentially Plain text files with extension HTM or HTML The HTML commands are called TAGS. The format of the tags is <tag name></tag name> Everything goes between opening and closing tags For example <bold> my name </bold> results in my name Let us do it in a logical sequence
</body>
The <html> tag tells the browser that what is to follow is an HTML
document.
There are other tags between these two. which are
Now we have a template of an HTML file
Other useful HTML tags
|