-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworking.html
115 lines (107 loc) · 3.91 KB
/
working.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>MAP672 Portfolio Example</title>
<meta name=‘viewport’ content=‘initial-scale=1,maximum-scale=1,user-scalable=no’ />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css" />
<link href='http://fonts.googleapis.com/css?family=Imprima' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
<style>
body {
background: #f5f5f5;
font-family: Imprima, sans-serif;
}
header {
width: 100%;
min-width: 800px;
margin: 0 auto;
background: steelblue;
padding: 15px 0 20px;
}
h1 {
font-family: Dosis, sans-serif;
color: #375671;
width: 80%;
margin: 0 auto;
color: whitesmoke;
}
h2 {
font-family: Dosis, sans-serif;
color: #375671;
width: 80%;
margin: 0 auto;
color: whitesmoke;
}
h3 {
font-family: Dosis, sans-serif;
color: #003d71
}
p {
font-size: .9em;
color: #375671;
}
ul {
list-style-type: none;
font-size: .9em;
color: #375671;
line-height: 1.6em;
}
a, a:visited {
color: #003d71;
}
.project {
width: 80%;
min-width: 800px;
height: 100%;
margin: 35px auto;
}
.project:after{
content: "";
display: table;
clear: both;
}
.project-image {
width: 388px;
height: 240px;
background: white;
float: left;
margin-right: 20px;
border: 2px solid #dddddd;
}
</style>
</head>
<body>
<header>
<h1>MAP672: Programming for Web Mapping</h1>
<h2>Web Cartography at the University of Kentucky</h2>
</header>
<section class="project">
<a href="maps/ocean-depth.pdf"><img src="images/ocean-depth.png" alt="map of ocean depths" class="project-image" /></a>
<h3><a href="maps/ocean-depth.pdf">Depth of the oceans</a></h3>
<p>The map was generated in QGIS by doing bla bla bla ...</p>
<ul>
<li>See the map: <a href="maps/ocean-depth.pdf">Depth of the oceans</a></li>
<li>Data Source: <a href="https://asterweb.jpl.nasa.gov/gdem.asp">GDEM, NASA's ASTER data from the Jet Propulsion Laboratory</a></li>
</ul>
</section>
<section class="project">
<a target = '_blank' href="https://rgdonohue.cartodb.com/viz/7a678fd6-88a7-11e5-8ee8-0e674067d321/public_map"><img src="images/uninsured-americans.png" alt="uninsured americans by county" class="project-image" /></a>
<h3><a target = '_blank' href="https://rgdonohue.cartodb.com/viz/7a678fd6-88a7-11e5-8ee8-0e674067d321/public_map">Uninsured Ameircans in 2015 by US County</a></h3>
<p>The map was build using QGIS for X processing and used CartoDB CartoCSS styles to do Y and Z ...</p>
<ul>
<li>See the map: <a target = '_blank' href="https://rgdonohue.cartodb.com/viz/7a678fd6-88a7-11e5-8ee8-0e674067d321/public_map">Uninsured Ameircans in 2015 by US County</a></li>
<li>Data Source: <a target = '_blank' href="http://www.countyhealthrankings.org/">County Health Rankings & Roadmaps</a></li>
</ul>
</section>
<section class="project">
<a target = '_blank' href="#"><img src="images/hello-kitty.png" alt="Hello Kitty Proportional Symbol Map" class="project-image" /></a>
<h3><a target = '_blank' href="#">Hello Kitty Proportional Symbol Map</a></h3>
<p>This map was built with custom JavaScript code drawing upon the Leaflet JavaScript Library, bla bla bla</p>
<ul>
<li>See the map: <a target = '_blank' href="#">Hello Kitty Proportional Symbol Map</a></li>
<li>Data Source: <a target = '_blank' href="https://www.eia.gov/electricity/data/detail-data.html">County Health Rankings & Roadmaps</a></li>
</ul>
</section>
</body>
</html>