-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
43 lines (34 loc) · 1.28 KB
/
Copy pathcontato.html
File metadata and controls
43 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contato - Planeta Power</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800">
<div class="max-w-xl mx-auto mt-20 p-8 bg-white shadow-lg rounded-xl">
<h1 class="text-3xl font-bold text-indigo-600 text-center mb-6">Fale Conosco</h1>
<form class="space-y-6">
<div>
<label class="block text-gray-700 font-medium">Nome</label>
<input class="w-full mt-1 p-2 border rounded-lg" type="text" />
</div>
<div>
<label class="block text-gray-700 font-medium">E-mail</label>
<input class="w-full mt-1 p-2 border rounded-lg" type="email" />
</div>
<div>
<label class="block text-gray-700 font-medium">Mensagem</label>
<textarea rows="5" class="w-full mt-1 p-2 border rounded-lg"></textarea>
</div>
<button class="w-full bg-indigo-600 text-white py-3 rounded-lg font-semibold hover:bg-indigo-700">
Enviar Mensagem
</button>
<p class="text-center mt-4">
<a href="index.html" class="text-indigo-600 hover:underline">Voltar ao início</a>
</p>
</form>
</div>
</body>
</html>