LanguagesCompilersResume MakerToolsBlogLatest JobsAbout UsContactFounder DeskConverters
Start here

Learn by building real things.

This page is a simple path to help you avoid tutorial overload and start shipping projects. Pick a track, finish the steps, then build one small project before moving on.

📅 ~3-4 months at a steady pace🧩 6 guided steps🛠 Free tools included🎯 Every step ends with a project

What makes Mana Coding different

We focus on practical explanations, real examples, and a clear next step on every page so learners don't get stuck. If a page feels incomplete, we improve it before publishing ads.

Publishing/quality policy: Read our editorial guidelines.
6
Roadmap Steps
3-4
Months, Typical Pace
100%
Free To Follow
6+
Real Projects Built

Recommended learning path

Follow this order. Don't skip building small projects, projects are where learning becomes skill. Each step lists an estimated time and the signals that tell you it's time to move on.

Step 1
1-2 weeks

HTML + CSS fundamentals

Understand how a web page is structured and styled before touching any logic.
  • Learn: HTMLCSS
  • Build: A simple landing page and a personal portfolio page
  • Upgrade: Make it responsive (mobile-first) and accessible
You're ready for the next step when
  • You can lay out a page without tables or guesswork
  • You understand the box model and flexbox
  • Your page looks correct on a phone-sized screen
Step 2
2-3 weeks

JavaScript essentials

Make pages interactive and start thinking in terms of logic, not just markup.
  • Learn: JavaScript
  • Build: Form validation and a small fetch API demo
  • Upgrade: Practice with 10 small DOM challenges
You're ready for the next step when
  • You can manipulate the DOM without copy-pasting blindly
  • You understand functions, arrays, and objects
  • You can read and fix your own error messages
Step 3
3-4 weeks

One backend language

Learn how a server receives requests, runs logic, and returns data.
  • Learn: PythonPHP
  • Build: A CRUD app with authentication
  • Upgrade: Deploy a working demo so someone else can use it
You're ready for the next step when
  • You understand request/response basics
  • You can read and write to a database
  • You can protect a route behind a login
Step 4
1-2 weeks

Databases and data modeling

Store and query data reliably instead of stuffing everything into one table.
  • Learn: SQL
  • Build: A schema for your CRUD app with at least two related tables
  • Upgrade: Practice joins, indexes, and basic query performance
You're ready for the next step when
  • You can design tables without duplicating data everywhere
  • You can write a join without guessing
  • You understand why indexes matter
Step 5
2-3 weeks

A frontend framework

Learn how larger apps are organized once plain JavaScript starts to feel messy.
  • Learn: React
  • Build: Rebuild one of your earlier projects as a component-based app
  • Upgrade: Add client-side routing and simple state management
You're ready for the next step when
  • You understand components, props, and state
  • You know when to lift state up versus keep it local
  • Your app doesn't re-render everything on every keystroke
Step 6
Ongoing

Ship and iterate

Turn finished projects into a public portfolio and keep building.
  • Learn: Explore more tutorials
  • Build: A polished, deployed portfolio with 2-3 real projects
  • Upgrade: Write a short readme for each project explaining what it does and why
You're ready for the next step when
  • You can explain your projects to someone else
  • You have something live to link to, not just source code
  • You keep a running list of what to learn next
What you'll actually build

Project ideas for every stage

Pair each roadmap step with one of these so you finish with something real to show, not just finished lessons.

Beginner

Personal portfolio page

A single responsive page introducing you, your skills, and links to your other projects. Great first proof you can ship something real.

Beginner

Interactive form with validation

A signup or contact form that checks input as the user types and gives clear, immediate feedback on mistakes.

Intermediate

CRUD app with authentication

Users can sign up, log in, and create, edit, and delete their own records, a notes app or simple task tracker works well.

Intermediate

Small API-backed dashboard

Pull data from a public API and display it with basic filtering or search, practicing fetch, state, and layout together.

Advanced

Component-based rebuild

Take an earlier project and rebuild it in React, focusing on breaking the UI into clean, reusable components.

Advanced

Deployed portfolio site

A polished, live site with two to three finished projects, short write-ups, and working links, ready to share.

Avoid these

Common mistakes beginners make

None of these are fatal, but avoiding them will save you months of spinning your wheels.

Jumping between languages too soon

Learning the fundamentals of HTML, CSS, and JavaScript before switching to a new language every week gives each concept time to actually sink in.

Watching tutorials without typing any code

Passively watching feels like progress, but typing the code yourself, and breaking it on purpose, is what actually builds understanding.

Skipping projects for "just one more course"

Courses are useful, but a project forces you to make decisions a tutorial already made for you. That's where real learning happens.

Trying to memorize syntax instead of concepts

Syntax is easy to look up. Understanding what a loop, a function, or a database join is actually for is what transfers between languages.

Learners like you

What people say after following this path

"Having an actual order to follow, instead of forty open tabs, is what finally got me past the beginner stage."

R
Renata, self-taught developer
Finished steps 1-3

"The 'you're ready when' checklists stopped me from rushing into JavaScript before I actually understood CSS layout."

M
Marcus, bootcamp applicant
Followed the full roadmap

"Building a real CRUD app with login after Step 3 taught me more than the two months of tutorials before it."

S
Sana, career switcher
Finished steps 1-4
Common questions

Frequently asked questions

How long does this roadmap take from start to finish?

Most beginners take three to four months working a few hours a week, faster if you can dedicate more time. The exact pace matters far less than finishing the small project at the end of every step.

Should I learn Python or PHP for step 3?

Python is a slightly gentler starting point and is widely used outside web development too. PHP is a practical choice if you specifically want to build traditional server-rendered websites. Either one teaches the same backend fundamentals.

Do I need to finish every step in order?

The order is a recommendation, not a rule. If you already know HTML and CSS, skip straight to JavaScript. The goal is steady progress, not rigid sequencing.

What if I get stuck on a project?

Getting stuck is part of the process. Re-read the relevant tutorial section, break the problem into smaller pieces, and try to reproduce the error with the smallest possible example before searching for help.

Do I really need to deploy my projects?

Yes, if you can manage it. A live link is far more convincing than source code alone, both to you and to anyone reviewing your work later, and deploying teaches you skills tutorials rarely cover.

Are the tools on this site required to follow the roadmap?

No. The tools are optional conveniences for formatting and quick experiments. They support the roadmap; they are never a substitute for understanding the underlying fundamentals.

Ready to start Step 1?

HTML and CSS are the fastest way to see real results as a beginner. Start there, then come back to move on to JavaScript.

Start HTML →