What is HTML?

HTML is used to create a Web site.
It is very easy to learn .

What is HTML ?
HTML is a markup language
HTML is used to describes the structure of Web page using markup
HTML stands for Hyper Text Markup Language
HTML elements are the building blocks of HTML pages
HTML elements are represented by tags
Example

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

<h1>H1Heading</h1>
<p>paragraph tag.</p>

</body>
</html>

<!DOCTYPE html> declaration defines this document
<html> element is the root element of HTML
<head> element contains meta information of the document
<title> element specifies a title for the web page
<body> element contains the page content
<h1> element defines a large heading
<p> element defines a paragraph

Leave a Reply

Your email address will not be published. Required fields are marked *