HTML is a very Simple Language , anybody can learn Full HTML by simple effort in 1-2 days. Lets go through HTML simple introduction . Pair selectors are called tags . In between tags we write our contents/Data. A HTML Page Always started with <html> tag and end with </html> <html> is the start tag. </html> is the end tag. After <html> tag there always <head> tag where we can include css/Javascript and libraries, Page Title etc. Finally after closing head tag </head> then <body> tag will start, All of the content will be in <body> . <h1>This is the heading Tag.</h1> <p>This is the Paragraph Tag </p>
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<h1>This is the Largest Heading.</h1>
<h2> h2 heading is smaller than h1 </h2>
<h3> h3 heading is smaller than h2 </h3>
<h6> h6 is the smallest heading </h6>
<p>This is the Paragraph.Today finally,
i learned how can we write heading and paragraph in HTML language. </p>
</body>
</html>
Follow the Chapter Sequence , You can Learn HTML in our short Course.
Our Chapters are easy,short and cover all the contents of the HTML language.