HTML Tutorial

The standard markup language for websites and web pages is HTML.

We can create our own website or our client’s website using HTML.

HTML is easy to understand and learn, so you will definitely enjoy this language.

Example

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

<h1>Here We can type any Heading</h1>
<p>Here We can write any paragraph</p>
</body>
</html>