-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (87 loc) · 3.32 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Imóvel Guide</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Imóvel Guide</h1>
<nav>
<ul>
<li><a href="#">Condomínios</a></li>
<li><a href="#">Fórum</a></li>
<li><a href="#">Guia</a></li>
<li><a href="#">Artigos</a></li>
<li><a href="#">Ferramentas</a></li>
<li><a href="#">Cotar Imóvel</a></li>
<li><a href="#">Planos</a></li>
<li><a href="#">Entrar</a></li>
<li><a href="#" class="btn">Cadastre-se</a></li>
</ul>
</nav>
</header>
<main>
<section class="section-1">
<div class="corretor">
<img src="corretor1.jpg" alt="Corretora">
<div>
<h2>Nome Corretora</h2>
<p>3.000 pontos</p>
<button onclick="verTelefone('telefone1')">Ver telefone</button>
<p id="telefone1" class="telefone">Telefone oculto</p>
</div>
</div>
<div class="corretor">
<img src="corretor2.jpg" alt="Corretor">
<div>
<h2>Nome Corretor</h2>
<p>1.260 pontos</p>
<button onclick="verTelefone('telefone2')">Ver telefone</button>
<p id="telefone2" class="telefone">Telefone oculto</p>
</div>
</div>
</section>
<section class="section-2">
<form id="formulario">
<h2>Mande uma mensagem:</h2>
<input type="text" id="cpf" placeholder="Digite seu CPF">
<input type="text" id="telefone" placeholder="Digite seu telefone">
<input type="text" placeholder="Digite o assunto">
<button type="button" onclick="enviarMensagem()">Enviar Mensagem</button>
</form>
</section>
<section class="section-3">
<h2>Regra de 3</h2>
<input type="text" id="input1" placeholder="60">
<span>---</span>
<input type="text" id="input2" placeholder="100">
<input type="text" id="input3" placeholder="30">
<button onclick="calcularRegra3()">Calcular</button>
<div id="resultado"></div>
</section>
<section class="section-4">
<button onclick="abrirModal()">ABRIR IMAGEM NO MODAL</button>
<div id="modal" class="modal">
<div class="modal-content">
<span class="close" onclick="fecharModal()">×</span>
<img src="image.png" alt="Imagem da casa">
</div>
</div>
</section>
<div class="imagem-abaixo">
<img src="image.png" alt="Imagem Abaixo do Modal">
</div>
</div>
<section class="section-5">
<button onclick="baixarImagem()">Download</button>
</section>
</main>
<footer>
<p>© Copyright 2024. Todos os direitos reservados.</p>
</footer>
<script src="projeto.js"></script>
</body>
</html>