-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestes.html
More file actions
44 lines (35 loc) · 1.19 KB
/
testes.html
File metadata and controls
44 lines (35 loc) · 1.19 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
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Contato</title>
<meta charset="utf-8">
</head>
<body>
<!-- Código CSS -->
<style>
.alinhadoEsquerda {text-align:left;}
.alinhadoCentro {text-align:center;}
.alinhadoDireita {text-align:right;}
.textoRealce-E {color:#2C55FF;}
.textoRealce-C {color:green;}
.textoRealce-D {color:red;}
td {padding: 8px; border: 1px solid #E4E4E4;}
</style>
<!-- Código da Tabela -->
<table cellspacing="6">
<tr>
<td class="alinhadoDireita">
<span class="textoRealce-D">Alinhado à direita</span>
@Html.Label("Cep: ")
</td>
<td class="alinhadoEsquerda">
<span class="textoRealce-E">Alinhado à esquerda</span>
@Html.Label("Endereco: ")
</td>
<td class="alinhadoCentro">
<span class="textoRealce-C">Alinhado ao centro</span>
@Html.Label("Número: ")
</td>
</tr>
</table>
</body>