HTML Introduction (original) (raw)

Last Updated : 23 May, 2025

**HTML stands for Hyper Text Markup Language, which is the core language used to structure content on the web. It organizes text, images, links, and media using tags and elements that browsers can interpret. As of 2025, over 95% of websites rely on HTML alongside CSS and JavaScript, making it a fundamental tool in modern web development.

In a nutshell, HTML is all about **organizing and displaying information on a webpage. We can think of it as the **bones or **structure of a webpage.

Basic HTML Code Example

HTML `

My First Webpage

Welcome to My Webpage

This is my first paragraph of text!

`

**Output:

Screenshot-2025-04-08-131602

HTML

**HTML Page Structure

The basic structure of an HTML page is shown below. It contains the essential building-block elements (i.e. doctype declaration, HTML, head, title, and body elements) upon which all web pages are created.

HTML page structure