In this HTML5 tutorial we are going to learn the basic and advanced concepts of HTML5. If you are new in learning HTML5 just follow the given step-by-step topics.

HTML History


In 1989 Tim Berners-Lee invented www(World Wide Web). HTML was created by Tim Berners-Lee in 1991 and was published in 1995 as HTML 2.0.The first web browser(Mosaic) was introduced in 1993. HTML 3.2 was published as a W3C(World Wide Web Consortium) Recommendation in January 1997. HTML 4.0 is a major update to HTML specification and was published as W3C Recommendation in Dec 1997. A minor update HTML 4.01 was released in Dec 1999.

About HTML


HTML stands for HyperText Markup Language. HTML is the building blocks for web pages. HTML is used to create web pages and web applications. HTML tells the web browser to display the content.

Simple HTML Document


<!DOCTYPE html>
<html>
   <head>
        <title>Page Title</title>
   </head>

       <body>
             <h1>WELCOME</h1>
             <p>SVRR TECH Team Welcome you all for HTML5 Tutorial.</p>
       </body>
</html>


Code Explanation


<!DOCTYPE html>  The doctype declaration defines that this is an HTML5 document.

<html> This tag is the root element and it informs the web browser that it is an HTML document.

<head> the head element contains the metadata.

<title> This element is used to add title of the HTML page which is shown in browser's top.

<body> The body element contains the main content of the HTML page such as paragraph, heading etc.

<h1> The h1 element describes the largest heading.

<p> The p element describes a paragraph. 

Post a Comment

Previous Post Next Post