Getting Started:-
In this Lesson I will tell you how HTML is done Start
To do HTML Start we need one HTML editor. A lot of HTML editor is available but we will use sublime Text editor in our chapter.
First we open our editor. <!DOCTYPE html> will write in the first line.
Instructs web browser that this document is a HTML5 document.It is case-insensitive.
In the next row we do <head> Tag start.<head> Tag defines document head. <title> comes inside <head>. Then <body> tag does start which includes links,images,heading,tables etc. and does displayed to the user.
The <html>,<head> and <body> tags make up the basic skeleton of every page.
<!DOCTYPE html>
<head>
<title>Title</title>
</head>
<body>
<h1>This is h1 Heading</h1>
<h2>This is h2 Heading</h2>
<p>This is span tag</p>
</body>
</html>
In the above Example you can easily understand the <head>,<title>,<body> tags of HTML5.
After run on browser we will see this way:-
