DEV Community

Cover image for What is HTML?
Kuganesh S
Kuganesh S

Posted on

What is HTML?

1.HTML stands for Hyper Text Markup Language.
2.It used for creating webpages.
3.It defines the meaning and structure of the web content.
4.HTML consists of Head,Body&Footer.
5.In HTML there are many semantic tags,they are helpful to create and structure the web page.
6.The tag is the container for all other HTML elements.

`<!DOCTYPE html>
<html lang="en">
<head>
    <title>HTML</title>
</head>
<body>

</body>
</html>`
Enter fullscreen mode Exit fullscreen mode

Top comments (0)