-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontato.html
72 lines (63 loc) · 2.07 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
69
70
71
72
<!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" />
<link rel="icon" type="image/png" href="./favicon.png" />
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/responsive.css" />
<title>ZooPark</title>
</head>
<body>
<div id="body">
<div id="top-bar">
<div id="title">
<h1 id="title-text">ZooPark</h1>
</div>
</div>
<div id="sidebar">
<div id="menu">
<a href="./index.html">Home</a>
<a href="./sobre.html">Sobre</a>
<a href="./animais.html">Animais</a>
<a href="./localizacao.html">Localização</a>
<a href="./ingressos.html">Ingressos</a>
<a href="./contato.html">Contato</a>
</div>
</div>
<div id="content">
<article>
<h2>Entre em contato com o ZooPark</h2>
<form action="#" id="formulario">
<div id="entrada">
<label for="nome"> Nome: </label>
<input id="nome" type="text" />
</div>
<div id="entrada">
<label for="celular"> </label>
Celular: <input id="celular" type="text" />
</div>
<div id="entrada">
<label for="email"> </label>
E-mail: <input id="email" type="text" />
</div>
<div id="entrada">
<label for="motivo"> </label>
Motivo do seu contato:
<textarea id="celular" type="text" rows="10"></textarea>
</div>
<button
onclick="alert('Dados enviados com sucesso! Em breve entraremos em contato!')"
id="enviar"
>
Enviar
</button>
</form>
</article>
</div>
<footer>© 2021, ZooPark. Todos os direitos reservados.</footer>
</div>
</body>
</html>