What is HTML?

HTML stands for hypertext markup language and it is a very easy language for creating Web pages.

The HTML language is made up of elements. HTML elements describe the structure and format of the content on a Web page.

With the help of little information and hand practice, you can become an expert on the basics in no time at all.

An Easy HTML Document Example

Let’s see the given example to understand basic HTML Document:

Example

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

<h2>Creating first Heading h2</h2>
<p>Creating first demo paragraph of the page.</p>

</body>
</html>

 

Output

Creating first Heading h2

Creating first demo paragraph of the page.

 

Pin It on Pinterest

Shares
Share This