What is HTML ?
What is HTML – HTML is stands for Hyper Text Markup Language. HTML is used to create web pages & applications.
A simple example of HTML –
<!DOCTYPE>
<html>
<head>
<title>HTML Page Title</title>
</head>
<body>
<h1> Write Heading </h1>
<p> Write Paragraph </p>
</body>
</html>
What is HTML