DEV Community

Bala Murugan
Bala Murugan

Posted on

Frontend Getting with HTML

HTML - Hypertext markup language

What is Html ?

HTML (HyperText Markup Language) is the standard markup language used to create and structure web pages. It defines the layout of content on the web using elements like headings, paragraphs, images, links, tables, and forms.

It is not a programming language.

It forms the foundation of web development

Why do we use HTml ?

  * structured web content
  * Enable link between pages
  * Build to web app and application
Enter fullscreen mode Exit fullscreen mode

Markup language
A markup language is a system used to annotate or structure text by using tags so that computers can understand how the content should be displayed or processed

 but it does not perform logic like a programming language.
Enter fullscreen mode Exit fullscreen mode

Types of markup language

 1.Presentational Markup Language ...>  HTML (older versions)
 2.Procedural Markup Language   .....>  TeX, PostScript
 3.Descriptive (Semantic) Markup Language...> HTML5, XML, SGML 
Enter fullscreen mode Exit fullscreen mode

Referance : https://developer.mozilla.org/en-US/docs/Web/HTML

Top comments (0)