-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
58 lines (42 loc) · 1.13 KB
/
contato.html
File metadata and controls
58 lines (42 loc) · 1.13 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
<!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.html">Contato</a>
</td>
</tr>
<tr>
<td colspan="2">
<h2>Entre em contato</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<hr>
<form>
Seu e-mail: <br>
<input type="text" name="email"><br>
Assunto: <br>
<input type="text" name="assunto"><br>
Descrição: <br>
<textarea></textarea> <br>
<input type="submit" value="Enviar">
</form>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<h4>Todos os direitos reservados</h4>
</td>
</tr>
</table>
</body>
</html>