-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (69 loc) · 2.65 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
<!DOCTYPE html>
<html lang="pt-br">
<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>Landing Page Desafio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Section Heading -->
<div id="cabecalho">
<h1 class="titulo-cabecalho">
Tradição em projeto de arquitetura
</h1>
<p class="texto-cabecalho">
Arquitetura residencial e comercial
</p>
</div>
<!-- Section Informations -->
<div id="informations">
<div class="inform01">
<p class="inform-number">850</p>
<p>empreendimentos construídos</p>
</div>
<div class="inform02">
<p class="inform-number">40</p>
<p>anos de mercado e experiência</p>
</div>
<div class="inform03">
<p class="inform-number">2,000,000</p>
<p>m² em projetos contruídos</p>
</div>
</div>
<!-- Section Main Content -->
<div id="main-content">
<div class="texto-conteudo">
<h1 class="titulo-texto-conteudo">
Arquitetos com História e Experiência.
</h1>
<p class="resumo-texto-conteudo">
Nós realizamod desde 2002 projetos e gerenciamento de obras. <br>
Com mais de 800 projetos e 2.000.000 de m² construídos, tendo <br>
como principal proposta tranformar em realidade os sonhos de <br>
seus clientes, criando projetos personalizados, unindo a tradição <br>
e a modernidade em nossos projetos.
</p>
</div>
<div class="imagem-conteudo">
<img src="imagem.svg" alt="">
</div>
</div>
<!-- Section Form-->
<div id="form">
<h1 class="titulo-formulario">
Conheça mais sobre nossos serivços:
</h1>
<form action="https://api.sheetmonkey.io/form/wVihungADZxZ3tKB7u5B2A" method="POST">
<input type="text" value="" placeholder="Nome" name="Name" required> <br>
<input type="text" value="" placeholder="E-mail" name="Email" required> <br>
<input type="hidden" name="Created" value="x-sheetmonkey-current-date-time" />
<button type="submit">Fale Conosco</button>
</form>
</div>
</body>
</html>