-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
68 lines (62 loc) · 1.98 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
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<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>Contato-Unes</title>
</head>
<body background="img/fundo2.png">
<table border="0" widht="900" align="center">
<tr>
<td>
<img src="./img/logo.png" alt="Unes logo" height="89">
</td> <br>
<td>
<a href="idex.html"> Home </a> |
<a href="quem_somos.html"> Quem somos</a> |
<a href="contato.html"> Contato</a> |
</td>
</tr>
</table>
<table border=0 widht="900" align="left">
<tr>
<td>
<h1> Entre em contato com nosoco </h1>
</td>
<tr>
<td>
<p>
Aqui você pode entrar em contato conosco para qualquer dúvidas ou sugestão! Nós estamos sempre dispostos a ajudar
</p>
<hr>
</tr>
</td>
</tr>
</table>
<br><br><br><br><br><br><br><br>
<form >
<h1> Formúlario</h1>
Nome: <input type="text" id="nome" required><br><br>
Email: <input type="email" id="email" placeholder="@exemplo.com"
required><br><br>
Assunto: <select id="assunto">
<option value="Dúvida"> Dúvida </option>
<option value="Reclamação"> Reclamação </option>
<option value="Elogio"> Elogio </option>
</select>
<br><br>
Descricao: <br>
<textarea name="" id="" cols="" rows=""></textarea>
<br>
<input type="submit" value="Enviar">
</form>
<table>
<tr>
<td>
<h4> © Todos os direitos reservados - Unes </h4>
</td>
</tr>
</table>
</body>
</html>