HTMLify
debt.html
Views: 62 | 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 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 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>FinanceFlow | Debt Management</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 active">Debt Mgt</a> <a href="goals.html" class="nav-item">Goals</a> <a href="savings.html" class="nav-item">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>Debt Management Center</h1> <button class="btn btn-primary">+ Add New Debt</button> </div> <section class="card large-card animate-in" data-delay="0.2"> <h3>Active Debts Overview</h3> <div class="debt-summary"> <div class="summary-card" style="background-color: var(--md3-sys-color-surface-variant); border-left: none;"> <p class="label">Total Principal Owed</p> <h2 class="value" id="total-principal">₹350,000</h2> </div> <div class="summary-card" style="background-color: var(--md3-sys-color-surface-variant); border-left: none;"> <p class="label">Total Projected Interest</p> <h2 class="value error-text" id="total-interest">₹78,500</h2> </div> <div class="summary-card primary-card" style="border-left: 4px solid var(--md3-sys-color-primary);"> <p class="label">Debt Payoff Target Date</p> <h2 class="value" id="payoff-date">2027-06-01</h2> </div> </div> </section> <section class="card large-card animate-in" data-delay="0.3"> <h3>Debt Repayment Strategies</h3> <div class="feature-row"> <div class="feature-card" style="border-left: 3px solid var(--md3-sys-color-tertiary);"> <h4>Debt Snowball Method</h4> <p>Focuses on paying off the smallest balance first for psychological wins.</p> <button class="btn btn-secondary mt-16">Simulate Snowball</button> </div> <div class="feature-card" style="border-left: 3px solid var(--md3-sys-color-primary);"> <h4>Debt Avalanche Method (Recommended)</h4> <p>Prioritizes debts with the highest interest rate to minimize total interest paid.</p> <button class="btn btn-primary mt-16">Apply Avalanche</button> </div> </div> </section> <section class="card animate-in" data-delay="0.4"> <h3>Detailed Loan Register</h3> <div class="table-wrapper"> <table class="data-table"> <thead> <tr> <th>Creditor</th> <th>Principal</th> <th>Rate (APR)</th> <th>Balance</th> <th>Next Payment</th> </tr> </thead> <tbody> <tr> <td>Home Loan (Secured)</td> <td>₹5,00,000</td> <td>7.50%</td> <td>₹3,00,000</td> <td>Aug 5</td> </tr> <tr> <td>Personal Loan (Unsecured)</td> <td>₹50,000</td> <td>15.00%</td> <td>₹20,000</td> <td>Aug 12</td> </tr> <tr> <td>Credit Card XYZ</td> <td>₹10,000</td> <td>24.99%</td> <td>₹30,000</td> <td>Aug 1</td> </tr> </tbody> </table> </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> |