What is HTML?
HTML or Hyper Text Markup Language is the standard way how you make the page that is displayed by the browser.
Html is how the page is structured, it consists of a series of elements. The elements tell the browser how to display the content you write.
Basic skeleton
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>