-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
77 lines (60 loc) · 1.09 KB
/
contato.html
File metadata and controls
77 lines (60 loc) · 1.09 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
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
<!DOCTYPE html>
<html>
<head>
<title>UNES - contato</title>
<meta charset="utf-8">
</head>
<body background="imagens/fundo2.png">
<table border="0" width="900" align="center">
<tr>
<td height="89"><img src="imagens/logo.png"></td>
<td align="right">
<a href="index.html">Home</a> |
<a href="quem-somos.html">Quem Somos</a> |
<a href="">Contato</a>
</td>
</tr>
<tr>
<td>
<h2>Entre em contato</h2>
</td>
</tr>
<tr>
<td colspan="2">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<hr>
</td>
</tr>
<form>
<tr>
<td>
Seu e-mail:<br>
<input type="text" name="email">
</td>
</tr>
<tr>
<td>
Assunto:<br>
<input type="text" name="">
</td>
</tr>
<tr>
<td>
Descrição:<br>
<textarea></textarea>
</td>
</tr>
<tr>
<td>
<input type="submit" value="Enviar">
</td>
</tr>
</form>
<tr>
<td colspan="2" align="center">
<h4>Todos os direitos reservados</h4>
</td>
</tr>
</table>
</body>
</html>