-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform_intersse.html
More file actions
89 lines (77 loc) · 3.46 KB
/
form_intersse.html
File metadata and controls
89 lines (77 loc) · 3.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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>LOVT - Formulário de interesse!</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>LOVT</h1>
<h2> You Love, <br>
your loft!
</h2>
</div>
<button class="menu-toogle">☰</button>
</div>
</header>
<main class="main-form">
<div class="container">
<h1>Quero um loft!</h1>
<form action="form_sucesso.html">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" required><br>
<label for="email">E-mail:</label><br>
<input type="e-mail" id="email" name="email" required><br>
<label for="tel">Telefone:</label>
<input type="tel" id="tel" name="tel" required>
<fieldset>
<legend>Contrato</legend>
<input type="checkbox" id="contrato" name="contrato_aluguel" value="aluguel">
<label for="contrato_aluguel"> Aluguel</label>
<input type="checkbox" id="contrato" name="contrato_compra" value="compra">
<label for="contrato_compra"> Compra</label>
</fieldset>
<fieldset>
<legend>Aceita Pet?</legend>
<input type="radio" id="pet-friendly_sim" name="pet-friendly" value="sim">
<label for="pet-friendly_sim">Sim</label>
<input type="radio" id="pet-friendly_nao" name="pet-friendly" value="nao">
<label for="pet-friendly_nao">Não</label>
</fieldset>
<label for="regiao">Região</label>
<select name="regiao" id="regiao">
<option value="" disabled selected>Selecione uma opção</option>
<option value="centro">Centro</option>
<option value="sul">Sul</option>
<option value="norte">Norte</option>
<option value="oeste">Oeste</option>
</select><br><br>
<label for="observacoes">Observações</label><br>
<textarea name="observacoes" id="observacoes"></textarea><br>
<button type="submit" class="btn-primary">enviar</button>
</form>
</div>
</main>
<footer>
<div class="mapa">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3673.965795061059!2d-42.96507753332922!3d-22.951486792494595!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x998ec8ff41198d%3A0xabdc88cd62dc2506!2sR.%20Eliane%20-%20Jardim%20Atl%C3%A2ntico%20Oeste%2C%20Maric%C3%A1%20-%20RJ!5e0!3m2!1spt-BR!2sbr!4v1620686960219!5m2!1spt-BR!2sbr" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<div class="informacoes">
<p>LOVT - You love, your loft!</p>
<p>Broad St,<br>
Newark, NJ 07102 - USA</p>
<p>
<a href="tel:+1973854555548">+1 (973) 854-555-548</a>
<a target="_blank"
href="http://wa.me/[+1(973)854-555-548]">(WhatsApp)</a>
</p>
<p> <a href="mailto:contact@lovtrealstate.com">contact@lovtrealstate.com</a> </p>
</div>
</footer>
</body>
</html>