HTML

HTML(Hyper Text Markup Language) is the standard markup language for creating Web pages. It uses of a set of elements to describe the structure of a Web page. HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link",
Below is a HTML example,
```
<!DOCTYPE html>
<html>
<head>
  <title>Page Title</title>
</head>
<body>
  <h1>My First Heading</h1>
  <p>My first paragraph.</p>
</body>
</html> 
```