All posts

Learning Web Development as a Student

By Abdul Manan - 2026-07-10 - 2 min read - #learning #web #beginners
Learning Web Development as a Student

I'm still a student, still learning every week. But I've learned enough to know which advice actually moved me forward — and which just kept me busy. If you're starting out, maybe this saves you some time.

Build things before you feel ready

The single biggest jump for me came from building real projects, not from finishing another tutorial. Tutorials feel productive because you always get a working result. But you learn the most when something breaks and it's your job to figure out why.

Pick something small and real. A calculator. A landing page for a made-up brand. This portfolio. Finish it. Ship it.

Learn the fundamentals deeply

Frameworks come and go. HTML, CSS and JavaScript don't. Time spent understanding how the box model works, how the cascade decides styles, or how the browser runs your JavaScript pays off in every framework you'll ever touch.

/* understanding this one line teaches you more than a dozen libraries */
* { box-sizing: border-box; }

Read other people's code

GitHub is a free classroom. When I like how a site works, I open the source and figure out how. Reading good code teaches patterns no tutorial bothers to explain.

Don't skip design

You don't need to be a designer, but knowing a little about spacing, type and colour makes everything you build look ten times more finished. It's also just fun.

Be patient with yourself

Some days nothing clicks. That's normal — it's not a sign you're not cut out for it. Consistency beats intensity. A little every day compounds fast.

Where I am now

Still learning, still shipping, still breaking things on purpose to understand them. If you're on the same path: keep going. Future-you will be glad you did.

Share: X LinkedIn WhatsApp Facebook