Project - 18

Project 18: Budget Planner

Build a simple monthly budget planner. Users can add income and expenses, see the remaining balance, and view a summary of spending by category.

✦ HTML + CSS + JS Editor
▶ Live Output

👀 Show Example Solution
<input type="text" id="desc" placeholder="Description">
<input type="number" id="amount" placeholder="Amount">
<select id="type">
  <option value="income">Income</option>
  <option value="expense">Expense</option>
</select>
<button onclick="addEntry()">Add</button>

<script>
  // Income/Expense tracking + balance calculation
</script>