Thursday 9 April 2015

HTML Overview

HTML is basically hypertext markup language.It is use to develop web pages.It is the most widely used programming language in web developing areas.

1) Hypertext refers to the way in which web pages are linked together, that's why link available on web page are called Hypertext. 
2) HTML is a Markup Language which means you use HTML to simply "mark up" a text document with tags that tell a Web browser how to structure it to display.

Basically HTML was developed for defining structures of documents like headings,paragraphs,lists and so forth to facilitate the sharing of scientific information between researchers.
Basic Structure of HTML document is :

 <!DOCTYPE html>
<html>
<head>
<title>welcome</title>
</head>
<body>this is my first html page</body>
</html>

DOCTYPE defines the document type and html version also.
HEAD defines the document's header which can keep other html tag like title and link.
TITLE defines the documents title and it used between head tag always.
BODY defines the body of the document.It is the main tag of html because everything that define inside the body tag will be the main html document body.

resolution of above example
So this was the basic of HTML.We will continue in next post.

No comments:

Post a Comment