This repository was archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
54 lines (39 loc) · 1.56 KB
/
contato.html
File metadata and controls
54 lines (39 loc) · 1.56 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<title>Support || Contato</title>
<link rel="icon" href="./public/images/logo-icon.png" />
<link rel="stylesheet" href="./public/css/main.css" />
<link rel="stylesheet" href="./public/css/animations.css" />
<link rel="stylesheet" href="./public/css/page-contato.css" />
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<img src="./public/images/logo-icon.png" alt="Logo support">
<h1>Contato (Fale Conosco)</h1>
<p>Descreva detalhadamente o motivo de sua mensagem</p>
<a class="back-home" href="./index.html">
<img src="public/images/arrow-back.svg" alt="Voltar para pagina home">
<h3>Voltar para pagina home</h3>
</a>
</header>
<main>
<div class="contato">
<form action="index.html" method="get">
<input type=" text" placeholder="Titulo da mensagem" name="nome" id=nome required>
<input type="text" placeholder="Descrição" name="Descrição" id="descrição" required>
<input type="text" placeholder="Redes sociais para contato" name="contato" id='contato' required>
<div class="button">
<input type="reset" name="cancel" value="Cancelar">
<input type="submit" name="confirm" value="Confirmar">
</div>
</form>
</div>
</main>
</div>
</body>
</html>