Logo

dev-resources.site

for different kinds of informations.

Creating an online budget form 1/5

Published at
7/5/2021
Categories
budget
html
Author
muncey
Categories
2 categories in total
budget
open
html
open
Author
6 person written this
muncey
open
Creating an online budget form 1/5

Keeping track of spending is an ongoing chore. It is also a good first step in getting on top of your finances and can be fun to see where all the money is going. To help in keeping track of spending I am building an online budget form that will let me enter in monthly spending and total the amounts so I have a good idea of what my normal expenses are.

The first step in creating this online budget form is to set up the basic html.

First part is a form containing the option to add a new item.

        <form>
          <label>Item</label>
          <input type="text">
          <label>Amount</label>
          <input type="number">
          <button>Add</button>
        </form>
        <h3>Items</h3>
Enter fullscreen mode Exit fullscreen mode

The second part is to add a table that will contain the budget items.

        <table>
          <thead>
            <tr>
              <th>Item</th>
              <th>Amount</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td>Car</td>
              <td>$1.00</td>
            </tr>
          </tbody>
          <tfooter>
            <tr>
              <td>Total</td>
              <td>$1.00</td>
            </tr>
          </tfooter>
        </table>
Enter fullscreen mode Exit fullscreen mode

The table is split into 3 parts thead, tbody and tfooter. And the form currently looks like this:

image
Not much to look at obviously but in the coming posts I will show how to add dynamic functionality to the form and how to style the form so that it looks professional. Finally I will show how to use the form to feed into a submission to a CRM so that this could be used on the website of a financial counsellor.

budget Article's
30 articles in total
Favicon
Never Get Shocked by Your AWS Bill Again! 💰 Setting Up Smart Cost Alerts
Favicon
Best Monthly Budget Planners to Make Financial Management Smarter
Favicon
Building a Developer-Friendly Workspace on a Budget
Favicon
DevOps4Devs: set a budget
Favicon
The Pillars of Site Reliability Engineering Building Resilient Systems
Favicon
💰 Avoiding the $100,000 Surprise: How to Set Up AWS Budgets and Cost Alerts Like a Pro
Favicon
Achieving Financial Freedom: Practical Tips and Strategies
Favicon
How Frontier Airlines Keeps Fares Low
Favicon
Managing Business Finances: Tips for Staying on Top of Your Budget
Favicon
Home-improvement financing tips for your next project
Favicon
The Best Cheap SEO Services india
Favicon
Refurbished Computer Hardware: Cure for the Common Datacenter
Favicon
Revolutionizing Affordable Gaming: Radiance Gaming PC RX 580 8GB RGB
Favicon
Building Budget Planner app with Lyzr SDK
Favicon
How to set up AWS Budget Alerts to prevent surprises
Favicon
ChatGPT-Powered Finance App
Favicon
A guide to crafting an effective budget for SRE investments
Favicon
In what ways can small businesses leverage AI to streamline operations on a budget?
Favicon
What is Wrong with Classical Custom Development
Favicon
Best printer under $200
Favicon
Free AWS Bootcamp: Week 0 - Part 2
Favicon
AWS Budgets: Update alert thresholds unlimitedly with Lambda
Favicon
Performance Budget - Idea, Core Web Vitals, Tools
Favicon
Creating an online budget form 1/5
Favicon
SMB Telecom Services: How To Make Sure You Are Not Overpaying
Favicon
How to avoid unexpected AWS costs
Favicon
Makerwork 001
Favicon
How to Pay off Your $20,000 Loan in One Year or Less
Favicon
Fight Covid By Folding At Home (On A Budget)
Favicon
Where Did My Money Go

Featured ones: