Introduction and Structure of HTML

Introduction and Structure of HTML

HTML versions at a glance
Version Year
HTML 1991
HTML(2.0) 1995
HTML(3.2) 1997
HTML(4.01) 1999
XHTML 2000
HTML(5) 2014
What is HTML?
HTML is a markup language for describing web documents.

  1. The full form of HTML is Hyper Text Markup Language .

  2. A markup language refers to a set of markup tags.

  3. HTML documents are created using HTML tags.
Structure of HTML page

The structure of an HTML page is shown below:

HTML5 Tutorial

Only <body>the section content is displayed in the browser.

A very simple HTML document
Example
				
					<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h3>QUICK LEARN</h3>
<img loading="lazy" decoding="async" src="../images/quicklearn.png" alt="quicklearn" height="142" width="142">

</body>
</html>
				
			
HTML5 Tutorial

Introduction and Structure of HTML

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *