-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample1.html
130 lines (119 loc) · 3.21 KB
/
sample1.html
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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample</title>
</head>
<style>
table{
border: 2px solid black;
border-collapse: collapse;
background-color: grey;
font-style: italic;
}
th,td {
text-align: center;
border: 1px solid black;
}
tbody{
font-size: 85%;
}
tfoot{
font-style: bold;
}
</style>
<body>
<table style="width: 50%;">
<colgroup>
<col span = "4">
<col style="width:1px">
</colgroup>
<caption>How I choose to spend my money</caption>
<thead>
<tr>
<th id="purchase">Purchase</th>
<th id="location">Location</th>
<th id="date">Date</th>
<th id="cost">cost</th>
</tr>
</thead>
<tbody>
<tr>
<td id="haircut">Haircut</td>
<td headers="location haircut">Hairdresser</td>
<td headers="date haircut">12/9</td>
<td headers="cost haircut">50</td>
</tr>
<tr>
<td id = "shoes">Shoes</td>
<td headers="location shoes">Shoeshop</td>
<td headers="date shoes">15/9</td>
<td headers="cost shoes">200</td>
</tr>
<tr>
<td>Toothpaste</td>
<td>Supermarket</td>
<td>15/9</td>
<td>40</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="3">SUM</th>
<th >290</th>
</tr>
</tfoot>
</table>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>Expense Tracker</title>
</head>
<body>
<h2>Expense Tracker</h2>
<div class="container">
<h4>Your Balance</h4>
<h1 id="balance">$0.00</h1>
<div class="inc-exp-container">
<div>
<h4>Income</h4>
<p id="money-plus" class="money plus">+$0.00</p>
</div>
<div>
<h4>Expense</h4>
<p id="money-minus" class="money minus">-$0.00</p>
</div>
</div>
<h3>History</h3>
<ul id="list" class="list">
<!-- <li class="minus">
Cash <span>-$400</span><button class="delete-btn">x</button>
</li> -->
</ul>
<h3>Add new transaction</h3>
<form id="form">
<div class="form-control">
<label for="text">Text</label>
<input type="text" id="text" placeholder="Enter text..." />
</div>
<div class="form-control">
<label for="amount"
>Amount <br />
(negative - expense, positive - income)</label
>
<input type="number" id="amount" placeholder="Enter amount..." />
</div>
<button class="btn">Add transaction</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>