-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 814 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabelas</title>
</head>
<body>
<h1>Tabelas</h1>
<table> <!--linha que engolha a tabela-->
<tr> <!--cabeçalho da tabela-->
<th>Roupa</th>
<th>Cor</th>
<th>Tamanho</th>
<th>Preço</th>
<th>Disponibilidade</th>
</tr>
<tr> <!--linha de itens-->
<td>Bermuda</td>
<td>Azul</td>
<td>G</td>
<td>R$70,00</td>
<td>Em Estoque</td>
</tr>
<tr> <!--linha de itens numero 2-->
<td>Calça Jeans</td>
<td>Roxa</td>
<td>M</td>
<td>R$160,00</td>
<td>Esgotado</td>
</tr>
</table>
</body>
</html>