Tuesday, November 26, 2019

What is Html?

Html Is Hyper text Mark up language is used to crate a stretcher of web pages.
Html consists of whole numbers of elements.Html elements tell to browser how to display and Html elements are not showing on browser.Html Language is very basic and very simple to learn.




Some Examples of Html Elements:

<h1>This is Heading H1</h1>
<p>This is Paragraph</p>
These are some basic examples of Html tags.Html tags are open and close some spastic tags are just open not close we discuses in next deeply.

A simple Html Document:

<html lang="en">
<head>
<title>Learn Html</title>
</head>
<body>
<h1>This is H1 heading</h1>
<h2>This is H2 heading</h2>
<h3>This is H3 heading</h3>
<h4>This is H4 heading</h4>
<h5>This is H5 heading</h5>
<h6>This is H heading</h6>
<p>This is Paragraph</p>
<a href="#">This is link or href tag</a>
</body>
</html>

This is simple Html Doucment;