Skill Work

Learn. Build. Level Up.

📚 Learning Path (HTML → CSS → JS → React)

1. HTML (1–2 days)

<section>
  <h2>About Me</h2>
  <p>I'm learning web development.</p>
</section>

2. CSS (2–4 days)

Tip: Use Flexbox Froggy to master flex layout

3. JavaScript (7–10 days)

document.querySelector("button").onclick = function() {
  alert("Clicked!");
};

4. React (2+ weeks)

Install React with:
npx create-react-app my-app

🕒 How To Use Your Free Time

🎯 Mini Challenge

Create a responsive page with:

<form>
  <input type="text" placeholder="Your Name" />
  <input type="email" placeholder="Email" />
  <button>Send</button>
</form>
You can build all this in VS Code or use CodePen.io to test things fast.