-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
45 lines (45 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Padaria do seu zé</title>
</head>
<body>
<!-- Primeira parte do site, onde contem o titulo do site -->
<div>
<a href="index.html">Ir para home</a>
<h1>Padaria do seu zé</h1>
</div>
<!-- Segunda parte do site onde terá o formulário para contato -->
<div>
<form action="">
<div>
<label for="">Nome</label>
<input type="text" name="" id="">
</div>
<div>
<label for="">Email</label>
<input type="text" name="" id="">
</div>
<div>
<label for="">Conteúdo</label>
<textarea type="text" name="" id=""></textarea>
</div>
<button>Enviar</button>
</form>
</div>
<!-- Terceira parte do site, onde terá todas informações e dados para contato -->
<div>
<div>
<h2>Endereço</h2>
<p>Rua tal, bairro tal, cidade tal, estado tal</p>
</div>
<div>
<h2>Telefone</h2>
<p>(00) 0000-0000</p>
</div>
</div>
</body>
</html>