-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
202 lines (195 loc) · 8.37 KB
/
index.html
File metadata and controls
202 lines (195 loc) · 8.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>BudgetKit - Free Budget, 50/30/20, and Emergency Fund Calculators</title>
<meta name="description" content="Use free budget calculators to plan monthly spending, apply the 50/30/20 rule, and estimate emergency fund targets." />
<meta name="robots" content="index,follow" />
<link rel="canonical" href="https://devtoolbox.dedyn.io/budgetkit/" />
<link rel="sitemap" type="application/xml" title="BudgetKit Sitemap" href="https://devtoolbox.dedyn.io/budgetkit/sitemap.xml" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="BudgetKit" />
<meta property="og:title" content="BudgetKit - Practical Budget Calculators" />
<meta property="og:description" content="Build a realistic monthly plan with free budget, 50/30/20, and emergency fund calculators." />
<meta property="og:url" content="https://devtoolbox.dedyn.io/budgetkit/" />
<meta property="og:image" content="https://devtoolbox.dedyn.io/og/default.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="BudgetKit - Practical Budget Calculators" />
<meta name="twitter:description" content="Plan monthly spending and emergency savings with free browser-based calculators." />
<meta name="twitter:image" content="https://devtoolbox.dedyn.io/og/default.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Space+Grotesk:wght@600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "BudgetKit",
"url": "https://devtoolbox.dedyn.io/budgetkit/",
"description": "Free monthly budget and emergency fund calculators"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "BudgetKit Calculators",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Monthly Budget Calculator",
"url": "https://devtoolbox.dedyn.io/budgetkit/monthly-budget-calculator.html"
},
{
"@type": "ListItem",
"position": 2,
"name": "50/30/20 Budget Calculator",
"url": "https://devtoolbox.dedyn.io/budgetkit/50-30-20-budget-calculator.html"
},
{
"@type": "ListItem",
"position": 3,
"name": "Emergency Fund Calculator",
"url": "https://devtoolbox.dedyn.io/budgetkit/emergency-fund-calculator.html"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is a good emergency fund target?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most households aim for 3 to 6 months of essential expenses, and larger variability in income often warrants a bigger buffer."
}
},
{
"@type": "Question",
"name": "How does the 50/30/20 rule work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Allocate 50% of net income to needs, 30% to wants, and 20% to savings or debt payoff, then adjust by your real fixed costs."
}
},
{
"@type": "Question",
"name": "Should I budget with gross or net income?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Use net take-home income for monthly budgeting because it reflects what you can actually spend and save."
}
}
]
}
</script>
</head>
<body>
<div class="bg-shape bg-shape-a" aria-hidden="true"></div>
<div class="bg-shape bg-shape-b" aria-hidden="true"></div>
<main class="container">
<header class="hero">
<p class="eyebrow">Free Personal Finance Tools</p>
<h1>BudgetKit</h1>
<p class="hero-copy">
Build a practical monthly plan in minutes. Start with your real numbers,
then check your spending mix and emergency fund runway.
</p>
<nav class="quick-links" aria-label="Calculator pages">
<a href="./monthly-budget-calculator.html">Monthly Budget Calculator</a>
<a href="./50-30-20-budget-calculator.html">50/30/20 Calculator</a>
<a href="./emergency-fund-calculator.html">Emergency Fund Calculator</a>
</nav>
</header>
<section id="monthly-budget" class="card">
<h2>Monthly Budget Calculator</h2>
<p>See how much money remains after planned spending and savings.</p>
<form id="budget-form" class="form-grid" novalidate>
<label>
Net Monthly Income
<input type="number" min="0" step="0.01" id="income" required value="4500" />
</label>
<label>
Fixed Expenses (rent, bills)
<input type="number" min="0" step="0.01" id="fixed" required value="2100" />
</label>
<label>
Variable Expenses (food, transport)
<input type="number" min="0" step="0.01" id="variable" required value="1200" />
</label>
<label>
Planned Savings / Debt Payoff
<input type="number" min="0" step="0.01" id="saving" required value="700" />
</label>
<button type="submit">Calculate</button>
</form>
<div id="budget-result" class="result" aria-live="polite"></div>
<p>Need a focused page? <a href="./monthly-budget-calculator.html">Open the monthly budget calculator</a>.</p>
</section>
<section id="rule-503020" class="card">
<h2>50/30/20 Budget Planner</h2>
<p>Quick target split from your take-home pay.</p>
<form id="split-form" class="form-grid" novalidate>
<label>
Net Monthly Income
<input type="number" min="0" step="0.01" id="split-income" required value="4500" />
</label>
<button type="submit">Generate Targets</button>
</form>
<div id="split-result" class="result" aria-live="polite"></div>
<p>Need a focused page? <a href="./50-30-20-budget-calculator.html">Open the 50/30/20 calculator</a>.</p>
</section>
<section id="emergency-fund" class="card">
<h2>Emergency Fund Calculator</h2>
<p>Estimate your target and timeline based on essential expenses.</p>
<form id="fund-form" class="form-grid" novalidate>
<label>
Essential Monthly Expenses
<input type="number" min="0" step="0.01" id="essential" required value="2500" />
</label>
<label>
Target Months of Coverage
<input type="number" min="1" max="24" step="1" id="months" required value="6" />
</label>
<label>
Current Emergency Savings
<input type="number" min="0" step="0.01" id="current-fund" required value="4000" />
</label>
<label>
Monthly Contribution
<input type="number" min="0" step="0.01" id="contribution" required value="500" />
</label>
<button type="submit">Estimate Timeline</button>
</form>
<div id="fund-result" class="result" aria-live="polite"></div>
<p>Need a focused page? <a href="./emergency-fund-calculator.html">Open the emergency fund calculator</a>.</p>
</section>
<section class="card faq" id="faq">
<h2>FAQ</h2>
<details>
<summary>What emergency fund size should I use?</summary>
<p>Start with 3 months of essentials, then move toward 6+ if income is variable or single-source.</p>
</details>
<details>
<summary>Can I use this for debt payoff planning?</summary>
<p>Yes. Add your extra debt payment inside the savings/debt field in the monthly budget section.</p>
</details>
<details>
<summary>Why are my 50/30/20 numbers hard to match?</summary>
<p>High housing costs often push needs above 50%. Use the split as a target, then iterate gradually.</p>
</details>
</section>
</main>
<footer class="footer">
<p>BudgetKit on DevToolbox • <a href="https://devtoolbox.dedyn.io/">Main site</a> • <a href="https://devtoolbox.dedyn.io/datekit/">DateKit</a></p>
</footer>
<script src="app.js" defer></script>
</body>
</html>