HTML Meaning
What is html?
Answers
Heya !!
What is HTML ??
The acronym for HTML is Hyper Text Markup Language. Initially, it was known by the name of GML (General Markup Language). In 1986, it was renamed to SGML (Standard Generalized Markup Language). In 1989, Sir Tim Berners-Lee and his team redesigned this language and named it Hyper Text Markup Language (HTML), as we know it today.
HTML is a markup language usually used to create the basic structure of a web-page. Using HTML with JavaScript (JS is a client-side programming language used to make HTML pages alive), we can even create Windows 10 Store Applications through Visual Studio.
Hope it helps !!
HTML - Hypertext Markup Language
HTML is a markup language used for creating web pages as well as web application.
- HTML is extended by SGML.
- There are 5 versions of HTML.
- All web pages which are using HTML version is HTML 5
- Nowadays browsers can display only HTML 5.
- HTML tags starts from <HTML> and ends on </HTML>.
As you can see the given HTML program:
<!DOCTYPE html>
<head>
<title>Brainly</title>
</head>
<body>
<h1>My first HTML program</h1>
<p>This is a paragraph.</p>
</body>
</html>
Now, If I copy the given HTML in notepad or any text editor and if I will save it as .html file, then Browser will display it.
In the attachments, I have shown that, How to display our written HTML by browser.