HTML definition


HTML stands for Hyper Text Markup Language , it is a set of markup tags and HTML documents are described by HTML tags , each HTML tag describes different document content .

HTML is a markup language that web browsers use to interpret and compose text, images, and other material into visual or audible web pages. HTML  used to create web pages along with css, and javaScript, as well as to create user interfaces for mibile and web applications.

HTML was a document called "HTML Tags", first mentioned on the Internet by Tim Berners-Lee in late 1991.

It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items.


Example:

<html>



  <head>



    <title>This is a title</title>



  </head>



  <body>



    <p>Hello</p>



  </body>



</html>

No comments:

Post a Comment

Please do not enter any spam link in the comment box.

Related Posts

What is the Use of isNaN Function in JavaScript? A Comprehensive Explanation for Effective Input Validation

In the world of JavaScript, input validation is a critical aspect of ensuring that user-provided data is processed correctly. One indispensa...