-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
61 lines (43 loc) · 1.17 KB
/
contato.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>UNES - Página principal</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.html">Contato</a>
</td>
</tr>
<tr>
<td colspan="2">
<h2>Entre em contato</h2>
<p>
Entre em contato diretamente com a Unes pelo cadastro abaixo:
</p>
<hr>
<form>
Seu e-mail: <br>
<input type="text" name="email"><br><br>
Assunto: <br>
<input type="text" name="assunto"><br><br>
Descrição: <br>
<textarea></textarea><br>
<input type="submit" name="enviar">
</form>
</td>
</tr>
<tr>
<td colspan="2">
<br><br><br><br><br><br>
<h4 align="center">Todos os diretos reservados</h4>
</td>
</tr>
</table>
</body>
</html>