KRIYA.jpg
 
  
Webmasters Home Visual Basic     HTML Scripts
View Guestbook Feed Back
Sign guestbook
HTML - lesson 1

 
 

 
 
 

Home
Visual Basic
HTML
Scripts
MCP
 

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
Every HTML document has the two mandatory tags 
<html>
<body>

     </body>
           </html>
back to top

The <html> tag tells the browser that what is to follow is an HTML document.
The <body> tag specifies the matter that is to be displayed in the browser window

There are other tags between these two. which are 
<title>   specifies the title to be displayed in the title bar of the browser window
<head> it specifies the header information which contain information like key words, description of your sight etc.

Now we have a template of an HTML file
<html>
<head>
<title> <title>
</head>
</html>

Other useful HTML tags
<B>bold</B>
<center>center</center>
<I>italics</I> 
<STRONG>strong</STRONG> 
<BLINK>blink</BLINK> 
<CITE>citation</CITE> 

Lesson no.2

This sight Is visited times