Programming knowledge graph
Free visual guides that connect concepts, careers, and projects — then continue in Avora's interactive classroom. Pilot: HTML Fundamentals Module 1.
HTML Beginner Path
From “what is HTML?” through document structure, text, and comments — then into interactive practice.
Beginner guides
- What is HTML?HTML (HyperText Markup Language) is the standard language that describes the structure of a web page — headings, paragraphs, links, images, and landmarks — so browsers know what each part of the page means.
- Installing VS Code for HTMLVisual Studio Code (VS Code) is a free code editor where you create, save, and organize HTML files — the everyday workspace for beginners learning web development.
- Your First HTML PageA first HTML page is a complete mini-document: a doctype, an html root, a head for metadata, and a body for visible content — enough for a browser to display a real webpage.
- HTML Document StructureHTML document structure is the required skeleton of every page: doctype, html root, head (metadata), and body (visible content), nested in a strict parent–child tree.
- HTML Headings (h1–h6)HTML headings (<h1> through <h6>) create the outline of a page: one main title, then section and subsection titles — for readers, accessibility tools, and search engines.
- HTML ParagraphsThe HTML <p> element marks a paragraph of text — the default block for readable body copy on almost every webpage.
- HTML CommentsHTML comments are notes in your source code wrapped in <!-- -->. Browsers ignore them in the rendered page, so you can leave reminders for yourself or teammates.
Most popular
Starter concepts learners open first.
Interview guides
Projects
Personal intro page
A single HTML page with your name, a short bio, and clear headings.
From What is HTML? →Local practice folder
Create my-first-site/ with index.html and open it locally.
From Installing VS Code for HTML →Hello page
index.html with your name as h1 and a one-paragraph intro.
From Your First HTML Page →Semantic shell
Page with header and main landmarks nested correctly.
From HTML Document Structure →Article outline
Blog post with h1 title and h2 sections.
From HTML Headings (h1–h6) →About page
Heading plus two short paragraphs about you.
From HTML Paragraphs →Commented layout map
Mark <!-- header -->, <!-- main -->, <!-- footer --> while learning.
From HTML Comments →
Glossary
HTML Fundamentals
Full Module 1 guide index.
