What is HTML?
Simple as Irani chai — straight and solid.
Imagine you are at Nimrah Cafe near Charminar, ordering Irani chai. You tell the waiter: "One cutting chai, extra hot, less sugar."
HTML is exactly that. You give the browser instructions — "put a heading here, a paragraph here, an image here." The browser reads those instructions and shows you a beautiful page.
HyperText Markup Language
- HyperText — Links that take you from one page to another. Like PVNR Expressway — fast travel between places.
- Markup — You mark text with tags. "This is a heading, this is bold."
- Language — Rules. A language of instructions for the browser.
Tags are the building blocks of HTML. One opening tag and one closing tag — your content sits in between.
Here's the basic structure of an HTML document:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Paradise Biryani — Hyderabad</title>
</head>
<body>
<h1>Welcome to Paradise Biryani!</h1>
<p>Sab se best biryani Hyderabad mein.</p>
</body>
</html>
Every line has a purpose. Let's break it down:
<!DOCTYPE html>Tell the browser: "This is an HTML5 file"<html>Start of the page — like Charminar's main gate<head>Invisible info — title, description, settings<body>What the user sees — everything goes here<h1>Biggest heading — like a restaurant's name sign<p>Paragraph — for normal textFollow these three simple steps to see how HTML comes alive:
Relax — HTML is not a programming language. No calculations, no logic. Just structure. Simple as Irani chai.
Your turn now. Use the starter code below and build a small HTML page for your favourite Hyderabad food spot.
Open VS Code. Create a new file — name it biryani-shop.html
Copy the starter code below and add your own content:
<!DOCTYPE html>
<html lang="en">
<head>
<title>_____ — Hyderabad</title>
</head>
<body>
<h1></h1>
<p></p>
</body>
</html>
Complete these:
.html extension and drag into the browser. No server needed — opens directly. Done!Done — Key Points:
- ✅ HTML = Instructions for the browser to build a webpage
- ✅ Tags create elements — opening + closing
- ✅ What you write in
<body>— user sees it - ✅ Not a programming language — it's a markup language
- ✅ CSS for style, JS for behaviour — HTML gives only structure
Want to track your progress?
Log in to save your place and pick up where you left off.
Progress track karna chahte ho?
Login karo apni progress save karne ke liye aur jahan chhoda tha wahan se shuru karo.
Login