English

HTML Structure

The Skeleton of the Web

HTML (HyperText Markup Language) is not a programming language. It is a markup language that defines the structure of your content. Think of it like the wooden frame of a house.

<div>
<h1>Title</h1>
<p>Text</p>
</div>

Common Tags

  • <h1> to <h6> for Headings
  • <p> for Paragraphs

3 Core Concepts

1. Elements & Tags

HTML uses tags like <p> (opening) and </p> (closing) to wrap content.

2. Attributes

Tags can have extra info. E.g., <img src='cat.jpg'> uses the 'src' attribute.

3. Nesting

You can put tags inside other tags, just like Russian nesting dolls.

Live HTML Editor

Type HTML on the left and see it instantly render on the right!

Hello World!

This is my first web page.

  • Apple
  • Banana

Quick Drill

Which tag is correct?

Q: What tag is used for the largest heading?
Google AdSense Area