- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
62 lines (58 loc) · 2.23 KB
/
Copy pathindex.html
File metadata and controls
62 lines (58 loc) · 2.23 KB
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
<!DOCTYPE html>
<htmllang="es">
<head>
<metacharset="UTF-8" />
<metahttp-equiv="X-UA-Compatible" content="IE=edge" />
<metaname="viewport" content="width=device-width, initial-scale=1.0" />
<title>Expense Manager</title>
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap"
rel="stylesheet"
/>
<linkrel="stylesheet" href="css/normalize.css" />
<linkrel="stylesheet" href="css/styles.css" />
</head>
<body>
<headerclass="header">
<h1class="header__heading">Administrador de Gastos</h1>
<buttonid="reset-budget" class="button button--add">Reiniciar presupuesto</button>
</header>
<mainclass="main main__container">
<sectionclass="main__add-expenses">
<h2class="main__heading">Añade tus gastos aquí</h2>
<formid="form" action="#">
<divclass="form__expense">
<labelclass="form__label" for="expense">Gasto:</label>
<inputtype="text" class="form__input" id="expense" placeholder="Nombre del gasto" />
</div>
<divclass="form__quantity">
<labelclass="form__label" for="amount">Monto:</label>
<inputtype="number" class="form__input" id="amount" placeholder="Monto en $" />
</div>
<buttontype="submit" class="button button--add">Agregar</button>
</form>
</section>
<sectionclass="main__expense-list">
<tableclass="table">
<theadclass="table__head">
<trclass="table__head-row">
<thclass="table__head-cell">Gasto</th>
<thclass="table__head-cell">Monto</th>
<thclass="table__head-cell"></th>
</tr>
</thead>
<tbodyclass="table__body"></tbody>
</table>
</section>
<divclass="results">
<divclass="results__budget">
<pid="user-budget" class="results__text">Presupuesto: $0</p>
</div>
<divid="budget-remaining-container" class="results__budget results__budget--remaining-25">
<pid="budget-remaining" class="results__text">Restante: $0</p>
</div>
</div>
</main>
<scripttype="module" src="js/app.js"></script>
</body>
</html>