What is the full form of HTML ?

HTML – HyperText Markup Language


HTML, written in the form of HTML elements, is a markup language used for displaying information on a web browser. It was developed in 1990 by a scientist called Tim Berners-Lee. When writing HTML, you add "tags" to the text in order to create the structure.
A Sample HTML Document for displaying Hello World can be written as :-


<!DOCTYPE declaration >
<html>
<body>
<p>Hello world</p>
</body>
</html>