-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (67 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html {
background: #000000;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #000000, #434343);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #000000, #434343);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
body {
font-family: "Omnes", sans-serif;
font-size: 17px;
}
a {
color: #13AA52;
text-decoration: none;
}
a:hover {
color: #13AA52;
text-decoration: underline;
}
.title {
color: white;
margin: 0px !important;
}
ul {
padding: 0;
list-style-type: none;
}
li {
line-height: 25px;
}
.description-project {
color: white;
margin-bottom: 10px;
}
.label-title {
color: white;
font-size: 13px;
}
</style>
</head>
<body>
<h1 class="title">Leaflet workshop 2019</h1>
<span class="label-title">[email protected]</span>
<div class="description-project">
<p>
Data: Urban Cadastre - Pucallpa City 2009, Perú.<br>
<a href="http://www.unu.edu.pe/posgrado/index.php/posgrado/noticias/101-docentes-diplomado-de-geomatica"
target="_blank">Here</a> for more information.
</p>
</div>
<ul class="geomap-list">
<li><a href="./examples/1-simple-basemap.html">1. Simple Basemap</a></li>
<li><a href="./examples/2-custom-markers.html">2. Custom Markers</a></li>
<li><a href="./examples/3-interactive-choropleth.html">3. Interactive Choropleth</a></li>
<li><a href="./examples/4-geojson-search.html">4. GeoJson Search</a></li>
<li><a href="./examples/5-controls.html">5. Controls</a></li>
</ul>
</body>
</html>