-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 755 Bytes
/
index.html
File metadata and controls
36 lines (36 loc) · 755 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<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>
<tr>
<th>roupa</th>
<th>cor</th>
<th>tamanho</th>
<th>preço</th>
<th>disponibilidade</th>
</tr>
<tr>
<td>camiseta</td>
<td>preta</td>
<td>M</td>
<td>R$ 70,00</td>
<td>esgotado</td>
</tr>
<tr>
<td>Bermuda</td>
<td>vermelha</td>
<td>P</td>
<td>R$ 145,00</td>
<td>em estoque</td>
</tr>
</table>
<hr>
<p>voce pode melhorar a tabela usando CSS</p>
</body>
</html>