Learn HTML: Complete Overview
HTML Logo

The History and Development of HTML

View History

1. Developed By and When

HTML (HyperText Markup Language) was invented by Tim Berners-Lee in 1991 while working at CERN.

2. What is HTML?

HTML is the standard markup language used to create web pages. It defines the structure of a web document using elements represented by tags.

3. Versions of HTML

4. Basic HTML Structure

<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>Welcome</h1> <p>This is a paragraph.</p> </body> </html>

Structure in Detail

What are Tags and Elements in HTML ?

Tags :

Element :

Types of Elements

See More Tags

5. Commonly Used Tags

Learn table in short Learn table in Detail

6. HTML Attributes

Attributes provide additional information about elements. Example:

<a href="https://example.com" target="_blank">Visit</a>

Common attributes: href, src, alt, id, class, style, target

7. Forms in HTML

HTML forms are used to collect user input.

<form action="/submit" method="post"> <input type="text" name="name" placeholder="Enter your name"> <input type="submit" value="Submit"> </form>

8. Semantic HTML

Semantic elements clearly describe their meaning:

9. HTML Entities

Special characters in HTML:

View more Entities

10. HTML Comments

Comments are not displayed in the browser.

<!-- This is a comment -->

11. HTML Layout

See Flexbox cheatsheet Image

In HTML, a layout refers to the way web page content is structured and visually arranged on the screen. It’s about organizing elements like headers, navigation bars, sidebars, main content, and footers so they appear in a clear, usable, and attractive way. Although HTML defines the structure (the content and its semantic meaning), the actual layout—how things are positioned—comes from combining HTML + CSS.

Common Layout Components

View in Detail
HTML:
HyperText Markup Language
CSS
Cascading Style Sheets
JS
JavaScript