-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeature4.html
123 lines (123 loc) · 5.21 KB
/
feature4.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>feature-2</title>
<!-------Bootstrap-------->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
<!-------Fonts-------->
<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=Montserrat:wght@100;400;900&family=Ubuntu&display=swap"
rel="stylesheet"
/>
<!-------Font Awesome-------->
<script src="https://kit.fontawesome.com/e538bdf0e6.js"></script>
<!-------CSS-------->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Nav Bar -->
<section id="cabecalho">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="index.html">GEO-SIG</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="features.html"
>Features</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="orcamento.html"
>Solicite Orçamento</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="trabalhe-conosco.html"
>Trabalhe Conosco</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="testemunhos.html"
>Testemunhos</a
>
</li>
</ul>
</div>
</nav>
</section>
<!-- Detalhamento Feature -->
<section id="detalhe-feature">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 textos-detalhes">
<h2>Desenhe belos mapas</h2>
<p>
O GEO-SIG oferece um enorme conjunto de ferramentas
analíticas e de geoprocessamento. Vastas opções de
layout e exportação e inúmeras ferramentas de
criação de símbolos personalizados são apenas alguns
dos recursos do software.
</p>
<h2>Ferramentas</h2>
<p>
As ferramentas de cartografia foram projetadas para
produzir e refinar dados, dando suporte à produção
de mapas. Isso inclui a criação de mapas e a
simplificação e agregação de recursos. Ferramentas
para a criação de uma série de mapas também estão
incluídas.
</p>
</div>
<div class="col-lg-6">
<img
class="img-detalhe-feature"
src="imagens/f4.png"
alt=""
/>
</div>
</div>
</div>
</section>
<!-- Rodapé -->
<section id="rodape">
<a href="https://twitter.com"
><i class="fa-brands fa-twitter icones-midias-sociais"></i
></a>
<a href="https://instagram.com">
<i class="fa-brands fa-instagram icones-midias-sociais"></i
></a>
<a
href="mailto:geo-sig@empresa.com?&subject=Tenho%20interesse%20em%20testar%20o%20software!
&body=Tenho%20interesse%20em%20testar%20o%20software!"
>
<i class="fa-solid fa-envelope icones-midias-sociais"></i>
</a>
<p>
© Copyright GEO-SIG - Rua Mario de Barros, 1098. Dois
Vizinhos-PR. (46) 3536-3667
</p>
<p>Luca Aguiar Costa Carvalho e Lucas Gabriel Winter</p>
</section>
</body>
</html>