-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexmapa.html
76 lines (67 loc) · 3.26 KB
/
indexmapa.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style2.css">
<title>Mapa</title>
</head>
<body>
<nav class="navbar navbar-expand-lg py-3 fixed-top" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="img/logo - exe.svg" alt="Logo" width="36" height="30" class="d-inline-block align-text-top">
Energy Point
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Postos
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="">Funcionamento</a></li>
<li><a class="dropdown-item" href="#">Preços</a></li>
<li><a class="dropdown-item" href="#">Mapa</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="curiosidades.html">Curiosidades</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<h1 class="iphonetxt"> Mapa dos postos de abastecimento em Sorocaba</h1>
<div class="container-fluid" class="item" class="container">
<iframe width="1000" height="600" style="border:0" loading="lazy" allowfullscreen
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14766.171137362836!2d-47.4574737!3d-23.4993587!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94c5b2fc3424c1cb%3A0xefb4a8940e085a27!2sPostos%20de%20abastecimento%20el%C3%A9trico!5e0!3m2!1sen!2sus!4v1642924153944!5m2!1sen!2sus"></iframe>
</div>
</main>
<footer class="foter">
<div>
<a href="https://facebook.com/"><img width="50px" height="20px" src="img/facebook.svg" alt="facebook"
target="_blank"></a>
<a href="https://www.instagram.com/"><img width="50px" height="20px" src="img/instagram.svg" alt="instagram"
target="_blank"></a>
<a href="https://getsupport.apple.com/?caller=support.header&cid=gn-ols-contact-mgs_lp-get_help"><img width="50px"
height="20px" src="img/whatsapp.svg" alt="whatsapp" target="_blank"></a>
</div>
</footer>
<script src="mainmapa.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async defer></script>
</body>
</html>