Categories: HTML

HTML Introduction, What is HTML? Who Created?

Published by

What is HTML?

HTML is a Mark-Up Language. It’s full form is Hyper Text Markup Language.
This language is invented by Swish Physician Tim Berners-Lee in 1990 AD at European Laboratory, Switzerland.

HTML Introduction:

HTML is a simple scripting language used to create hypertext documents. Hyper text document is a piece of text that works as link.
Before HTML, it was SGML which is abbreviation of Standard Generated Markup Language.

HTML Tags

HTML is markup language which is written inside codes, and these codes are called tags. These tags are written inside angle brackets (<>).
These tags are of two types.

Container Tag:

Also called Paired Tags. These tags have endings also. These tags are closed with forward slash (/). eg.

Related Post
<p>...</p>
<h1>...</h1>
<center>...</center>
<span>...</span>
<table>...</table>
<title>...</title>

Empty Tag:

Also known as single tag. These tags do not have endings. Eg.
<hr >
<br >

Keep reading and send feedback. Next is a first HTML Page with compulsory tags and markups.

Advertisement
Share
Published by
Tags: HTML

Recent Posts

Understanding Functions in C: Best Beginner’s Guide

In this blog, we'll explore the concept of Functions in C, their syntax, type of… Read More

Last modified 11 hours ago

What is Queue in Data Structure and Algorithm, Concept of Queue in DSA Explained

First of all we have to understand what is queue? Queue in Data Structure and… Read More

Last modified 1 week ago

How To Change Bootstrap 5 Theme between Light and Dark Mode in any webpage using JavaScript & CSS?

In this article, we will learn how to add Dark and Light Mode switching functionality… Read More

Last modified 3 weeks ago