Basics things about HTML
BASIC THINGS ABOUT HTML
HTML Document Structure:-
An HTML document consists of text, which comprises the content of the document, and tags, which define the structure and appearance of the document. The basic structure of an HTML document is simple with the entire document bound by a pair of <HTML> and </HTML> tags.
<HTML>
<HEAD>
<TITLE> Title of page is written here</TITLE>
</HEAD>
<BODY>
The HTML tags that define your page go here
</BODY>
</HTML>
The <head>.....</head> tags make the header of the document. It appears at the top.
The <body>.......</body> tags make the body of the HTML document. It appears in the windows.
<html>.....</html> tags identifies the document as an HTML document.
<head>......</head>tags contains informtion about the document, including its title, scripts used, etc.
<title>.......</title>tags contains the document title. It allows to appears at browsers' title bar.
We will read about HTML5 in the upcoming article.
1.