DEV Community

Ashwin vijay
Ashwin vijay

Posted on • Edited on

What is HTML?

HTML(Hyper Text Mark Up Language) is most building block of the web.It defines the meaning and structure of the web content.HTML with other technologies are used to create presentation of web page and functionality of web page.
Eg: HTML skeleton

<html>
     <head>
     </head>
        <body>
           content
        </body>

   </html>

Enter fullscreen mode Exit fullscreen mode

Top comments (0)