File size: 724 Bytes
72053a0
65b6516
72053a0
2e67aba
65b6516
72053a0
 
65b6516
 
2e67aba
 
 
 
 
65b6516
2e67aba
65b6516
 
72053a0
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8" />
  <title>Formulário Imobiliário</title>
</head>
<body>
  <h2>Receba uma oferta personalizada</h2>
  <form action="/" method="post">
    <label>Nome: <input type="text" name="nome" required /></label><br />
    <label>Email: <input type="email" name="email" required /></label><br />
    <label>Bairro de interesse: <input type="text" name="bairro" required /></label><br />
    <label>Faixa de preço: <input type="text" name="preco" required /></label><br />
    <label>Detalhes do que procura:<br />
      <textarea name="mensagem" rows="4" cols="40"></textarea>
    </label><br />
    <button type="submit">Enviar</button>
  </form>
</body>
</html>