-
Notifications
You must be signed in to change notification settings - Fork 0
/
15_table.html
85 lines (78 loc) · 1.96 KB
/
15_table.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
<!doctype html>
<html lang="pt-br">
<head>
<title>pagina de exemplo estrutura basica</title>
<meta charset="utf-8">
<meta name="author" content="lucas">
<meta name="description" content="lista de documentos">
<meta name="keywords" content="html5, tecnologia">
<style>
body {
font-family: sans-serif;
}
table {
border-collapse: collapse;
width: 80%;
margin: auto;
background: beige;
}
td {
border: 1px solid black;
text-align: center;
}
th {
background: #bfc361;
border: 2px solid chocolate;
}
</style>
</head>
<body>
<table>
<caption>Tabela de preços de cursos </caption>
<thead>
<tr>
<th>Área</th>
<th>Curso</th>
<th>Investimento</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="3">Valores sujeitos a alterações sem prévio aviso</td>
</tr>
</tfoot>
<tbody>
<tr>
<td rowspan="3">Design</td>
<td>InDesign</td>
<td>R$ 1.000,00</td>
</tr>
<tr>
<td>Photoshop</td>
<td>R$ 1.000,00</td>
</tr>
<tr>
<td>Illustrator</td>
<td>R$ 1.000,00</td>
</tr>
<tr>
<td rowspan="4">Development</td>
<td>HTML</td>
<td>R$ 1.000,00</td>
</tr>
<tr>
<td>CSS</td>
<td>R$ 1.000,00</td>
</tr>
<tr>
<td>JavaScript</td>
<td>R$ 1.000,00</td>
</tr>
<tr>
<td>PHP</td>
<td>R$ 1.000,00</td>
</tr>
</tbody>
</table>
</body>
</html>