Full form of HTML is “hypertext markup language”. It is most basic web designing language basic for all web page development. HTML is very easy to learn and simple to use. An alternative to HTML coding is WYSIWYG editor, but it is good to do own coding to build your HTML pages. You must know HTML to learn other web designing languages. HTML need simple text editor like notepad to do coding. Write your HTML codes on a notepad and save the file as anything.html ot anything.htm

The saved file should open in a web broswser, and you can see how your HTML page will look in a web browser.

HTML is based on tags. It contains “markup tags”, that tell web browsers how to follow the instructions enclosed between the tags. The HTML tags are written within brackets <>

Every tag has a start point and a end point. Like for a paragraph:
<p> -> start tag of paragraph
</p> -> start tag of paragraph

Text and instruction  is enclosed within the tag. Tag and instruction in HTML are not case sensetive. Every HTML document start with the tag <html> and end with the tag </html>, indicating start and end of the HTML document.

A basic or simple HTML format is:

<html>
<head>
<title>Title of the webpage</title>
</head>
<body>
Text on the webpage
</body>
</html>


No Comments

No comments yet.

Comments RSS TrackBack Identifier URI

Leave a comment