HTML is an acronym for hypertext markup languages which is often used to develop static website.
Let us see an example of them
<html> // describes web pages
<body> // specifies the visibility of web pages
<h1>This is a heading portion</h1>
<p>This is a paragraph portion.</p>
</body>
</html>