Guest User

Untitled

a guest
Jan 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <head>
  2. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  3. </head>
  4.  
  5. <h1>Expense</h1>
  6. <h2>Add an item</h2>
  7.  
  8. <div id="form-box">
  9. <form>
  10. <div>
  11. <span>Type</span>
  12. <select name="type">
  13. <option value="card">Card</option>
  14. <option value="cash">Cash</option>
  15. <option value="other">Other</option>
  16. </select>
  17. </div>
  18.  
  19. <div>
  20. <span>Name</span> <input type="text" name="item-name" placeholder="What did you spend on?">
  21. </div>
  22.  
  23. <div>
  24. <span>Date</span> <input type="date" name="date">
  25. </div>
  26.  
  27. <div>
  28. <span>Amount</span> <input type="number" name="amount" placeholder="How much?">
  29. </div>
  30.  
  31. </form>
  32. </div>
  33.  
  34. <div id="button"><span>Add a expense</span></div>
  35.  
  36. <table>
  37. <tr>
  38. <th id="type" class="center">type</th>
  39. <th>Name</th>
  40. <th id="date">Date</th>
  41. <th style="text-align: right" id="amount">Amount</th>
  42. </tr>
  43. <tr id="if-empty">
  44. <td colspan="4"><span></span></td>
  45. </tr>
  46.  
  47. </table>
Add Comment
Please, Sign In to add comment