What is the full form of HTML

What is the full form of HTML

HTML: Hyper Text Markup Language

HTML stands for Hyper Text Markup Language. It is a standard markup language used to design the documents that will be displayed in the browsers as a web-page. 

It was designed by the British scientist Sir Tim Berners-Lee at the CERN nuclear physics laboratory in Switzerland during the 1980s.

This language can become more interactive and attractive by using CSS ( Cascading Style Sheet) and JS (JavaScript) within it.

HTML markup tags specify document elements such as headings, paragraphs, and tables. They mark up a document for display by a computer program known as a Web browser. The browser interprets the tags, displaying the headings, paragraphs, and tables in a layout that is adapted to the screen size and fonts available to it.

Structue of HTML

<!DOCTYPE html>
<html>
    <head>
        <title> <!– title bar –> </title>
        <!– header of the website –>
    </head>
    <body>      
        <!– body section of the website –>
<h1>Heading</h1>  
<p> Paragraph.</p>
    </body>
</html>

Advertisement
Back to top button