What is HTML? 

Use of HTML

HTML that uses for designing the webpages and webpages are the base of every website. It was developed in the decade of 90. It continues focusing on the up-gradation of HTML version.HTML was developed by TIM Berners Lee. In the present time, one of the best company W3C has taken the responsibility to focus on HTML development. 

HTML that stands for HyperText Markup Language.

Stands for of W3c is “World Wide Web Consortium (W3C)”.

It helps you to structure your website.HTML is consists of elements, attributes, and tags

HTML is base on Tags

HTML is not a programming language, it’s popular with the name of markup language.

That has rules to write the text that can easily browse in the browser.

Tags are Categorized in HTML

HTML usage the tags that are categorized in the form of the Human body. The human body starts from hair, head, body, and heal, each part of the body has a starting and ending point.

Same as the HTML is also used.

Example of HTML Page

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

<h1>Gyanexpress designed first page of HTML</h1>
<p>Education is the basic of everybody.</p>

</body>
</html>

Definition of Tags

  • The <!DOCTYPE html> the declaration defines this document to be HTML5
  • The <html> element is the root element of an HTML page
  • The <head> the element contains meta-information about the document
  • The <title> the element specifies a title for the document
  • The <body> the element contains the visible page content
  • The <h1> the element defines a large heading
  • The <p> the element defines a paragraph