HTML
What is full form of HTML?
Hyper Text Markup Language
Some information
HTML consists of a series of elements
HTML elements tell the browser how to display the content
HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
Starting Program ( Only for Understanding )
INPUT
<html>
<head>
<style>
</head>
<body>
<h1>A Simple Document of HTML</h1>
<p>Only for understanding</p>
</body>
</html>