-
Notifications
You must be signed in to change notification settings - Fork 0
/
location.html
56 lines (53 loc) · 2.47 KB
/
location.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Location</title>
<meta name="keywords" content="cinema, my web, historyofcinema">
<meta name="description" content="This is a webpage to discover new things about the world of Cinema and all the curiosities and facts that go with it." />
<title>icono</title>
<link rel="icon" type="image/png" href="images/logo.png">
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css">
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
</head>
<body>
<div>
<div id="banner">
<img src="images/logo.png" width="100" height="80"
alt="Fes click per tornar a la pàgina principal"> </div>
<a href="index.html">
<header>
<img class="banner" src="images/logo.png">
<div id="logotipo">
<a href="index.html">
</header>
<nav id="barra">
<ul>
<li> <a href= "index.html"> Home</a> </li>
<li> <a href= "location.html"> Location</a> </li>
<li> <a href= "awardplaces.html"> Award places </a> </li>
<li> <a href= "blog.html"> Blog </a> </li>
<li> <a href= "gallery.html"> Gallery </a> </li>
<li> <a href= "topfilms.html"> Top films </a> </li>
<li> <a href= "aboutme.html"> About Me </a> </li>
</ul>
</nav>
</div>
<section>
<h1 id="titulo1">This is where you can find us</h1>
<p id="sub1">Here is where we work on developing this website</p>
</section>
<div id="map" class="container rounded leaflet-container leaflet-touch leaflet-retina leaflet-fade-anim leaflet-grab leaflet-touch-drag leaflet-touch-zoom"></div>
<script type="text/javascript">
let map = L.map("map", {center: [40.6167,0.6], zoom:10});
L.tileLayer("https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png", {attribution:'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>'}).addTo(map)
L.marker([40.6167,0.6]).addTo(map);
</script>
<div>
<footer>
© Nerea Lara, 2021 / All Rights Reserved
</footer>
</div>
</body>