Where Little Coders Become Big Creators
Young learners are discovering the magic of web development, building their very first websites, and unlocking a world of creativity, one line of HTML at a time.
Kids everywhere are turning bold ideas into real websites, gaining digital confidence, and discovering that anyone, no matter their age, can be a creator on the internet.
Learn the foundation of web pages and how websites are built using simple HTML tags. This stage introduces learners to structure, text, images, links, and their first web project.
0 / 10 lessons completedHTML (HyperText Markup Language) is the foundation of every website you see on the internet.
It is not a programming language, but a markup language that tells the browser what to display and how to arrange content.
Think of HTML like the skeleton of a human body.
Every webpage follows a basic structure. This structure helps browsers understand your page.
A complete HTML page starts with <!DOCTYPE html>, followed by <html>, <head>, and <body>.
HTML uses tags to tell the browser what to do.
Tags are written inside angle brackets like <tag>.
Most tags come in pairs: an opening tag and a closing tag.
Headings are used to create titles and organize content on a webpage.
HTML has six heading levels from <h1> (biggest) to <h6> (smallest).
Paragraphs are used to write normal text on a webpage.
They make content easy to read and understand.
HTML allows you to make text look different and more interesting.
You can make text bold, italic, or even underlined.
Lists are used to organize items neatly.
There are two main types: unordered lists (bullets) and ordered lists (numbers).
Images make websites more beautiful and interesting.
The <img> tag is used to display images.
Links allow users to move from one page to another.
They are created using the <a> tag.
This is your first real project!
Combine everything you have learned to build a simple webpage.
Be creative — this is your first step as a web creator!