Why I started learning web development
I wanted to create my own websites and understand how web pages work. At first, many things felt difficult, but practice made everything clearer.
My goal is not speed. My goal is consistency. I try to learn a little every day and build real examples.
A small progress tracker I use
Writing my progress helps me stay focused. I use a very simple list to track what I learned.
Week 1
- Learned HTML headings, paragraphs, links
- Built first simple page
Week 2
- Learned colors, spacing, and fonts in CSS
- Built a basic responsive layout
Week 3
- Added simple JavaScript for button click
- Published my blog project
Simple JavaScript that helped me
I started with small scripts first. For example, showing a message after a button click gave me confidence to understand how JavaScript connects with HTML.
const button = document.querySelector("#helloBtn");
const message = document.querySelector("#message");
button.addEventListener("click", () => {
message.textContent = "Welcome to my learning journey!";
});
My current goals
- Improve responsive design skills.
- Write cleaner CSS with better structure.
- Build more small and complete projects.
- Learn JavaScript basics deeply.
Final note
I am still a beginner, but every project teaches me something valuable. This blog is part of my progress, and I will keep updating it as I learn more.