-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTABLE.HTML
More file actions
40 lines (39 loc) · 1.01 KB
/
TABLE.HTML
File metadata and controls
40 lines (39 loc) · 1.01 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title> Elemento Table </title>
</head>
<body>
<article>
<table align="center" border="1px" style="width:400px">
<thead>
<tr bgcolor="black" style="color: white;">
<th>Mês</th>
<th>Gastos</th>
</tr>
</thead>
<tbody>
<tr>
<td>Janeiro</td>
<td>R$950,00</td>
</tr>
<tr>
<td>Fevereiro</td>
<td>R$1000,00</td>
</tr>
<tr>
<td>Março</td>
<td>R$1200,00</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Soma:</td>
<td>R$3150,00</td>
</tr>
</tfoot>
</table>
</article>
</body>
</html>