-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1013 Bytes
/
Copy pathindex.html
File metadata and controls
40 lines (40 loc) · 1013 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
37
38
39
40
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Teste de Tabela:</title>
<link rel="stylesheet" href="estilo/style.css" />
</head>
<h1>Lista de Usuarios:</h1>
<body>
<table>
<thead>
<tr>
<th>G-mail</th>
<th>Contato</th>
<th>Serviços</th>
</tr>
</thead>
<tbody>
<tr>
<td>emanuel@gmail.com</td>
<td>(XX)XXXXX-XXXX</td>
<td>Predeiro</td>
</tr>
<tr>
<td>thalita@gmail.com</td>
<td>(XX)XXXXX-XXXX</td>
<td>fachineira</td>
</tr>
<tr>
<td>douglas@gmail.com</td>
<td>(XX)XXXXX-XXXX</td>
<td>Engenheiro</td>
</tr>
</tbody>
</table>
<h2>Adquira nossos serviços com a melhor qualidade do Basil.</h2>
</body>
</html>