HTMLify
savings.html
Views: 44 | Author: karbonsites
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 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>FinanceFlow | Savings Plan</title> <link rel="stylesheet" href="style.css"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet"> </head> <body> <header class="app-header"> <div class="logo">FinanceFlow</div> <nav class="main-nav"> <a href="index.html" class="nav-item">Dashboard</a> <a href="payments.html" class="nav-item">Payments</a> <a href="debt.html" class="nav-item">Debt Mgt</a> <a href="goals.html" class="nav-item">Goals</a> <a href="savings.html" class="nav-item active">Savings Plan</a> <a href="reports.html" class="nav-item">Reports</a> <a href="settings.html" class="nav-item">Settings</a> </nav> </header> <main class="container"> <div class="page-header animate-in" data-delay="0.1"> <h1>Savings & Budget Allocation</h1> <button class="btn btn-primary">Review Budgets</button> </div> <section class="card large-card animate-in" data-delay="0.2"> <h3>Budget Tracking Overview</h3> <div class="budget-overview"> <div class="budget-item"> <h4>Housing</h4> <div class="progress-bar-container small-bar"><div class="progress-bar" style="width: 85%; background-color: var(--md3-sys-color-error);"></div></div> <p>₹17,000 spent of ₹20,000</p> </div> <div class="budget-item"> <h4>Groceries</h4> <div class="progress-bar-container small-bar"><div class="progress-bar" style="width: 50%; background-color: var(--md3-sys-color-primary);"></div></div> <p>₹4,000 spent of ₹8,000</p> </div> <div class="budget-item"> <h4>Entertainment</h4> <div class="progress-bar-container small-bar"><div class="progress-bar" style="width: 20%; background-color: var(--md3-sys-color-tertiary);"></div></div> <p>₹1,000 spent of ₹5,000</p> </div> </div> <p class="small-text mt-16">Budgeting helps identify funds available for goal contributions.</p> </section> <section class="card animate-in" data-delay="0.3"> <h3>Savings Allocation Strategy</h3> <div class="feature-row"> <div class="feature-card" style="border-left: 3px solid var(--md3-sys-color-secondary);"> <h4>Envelope System Check</h4> <p>Verify that remaining monthly funds align with allocated savings buckets.</p> <span class="badge">Budget Aligned</span> </div> <div class="feature-card" style="border-left: 3px solid var(--md3-sys-color-primary);"> <h4>High-Yield Opportunities</h4> <p>Check for idle cash reserves that could be temporarily allocated to high-interest savings.</p> <button class="btn btn-secondary">Review Yield</button> </div> </div> </section> </main> <script src="script.js"></script> <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner"> <span>✨</span> <div>Built with <b>Karbon Sites</b></div> </a> </body> </html> |