-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrees.html
59 lines (57 loc) · 3.11 KB
/
trees.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jake Makes Maps</title>
<link rel="icon" type="image/x-icon" href="img/favicon.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<div class="body">
<!-- this is the nav bar -->
<nav class="navbar navbar-expand-lg navbar-default">
<div class="container-fluid" id="name-container">
<div class="navbar" id="navbarNav">
<p class="nav-name">Jake Steinberg</p><br><br>
<p class="nav-sub">Cartography / Data Visualization / Journalism</p>
</div>
<div>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- this is the content -->
<div class="container-fluid">
<div class="row">
<div class="col col-lg-3 col-md-2 col-0"></div>
<div class="col col-lg-6 col-md-6 col-md-8 col-12 info">
<h2 class="map-title">Slivers of an Ancient Forest</h2>
<p class="map-detail">The Northwoods are as fundamental to the cultural identity of the Upper Midwest as lakes and mosquitos. I made this National Geographic-inspired poster map for <strong>GEOG 370: Intro to Cartography</strong>. It tells the story of what the Northwoods used to be, as well as what they might one day become.
<br><br>
This map is featured in the NACIS <strong><a href="https://atlasofdesign.org/six">Atlas of Design Vol. VI</a></strong>, a biennial collection of outstanding cartography. It took the top spot in the 2022 NACIS <strong>Student Map and Poster Competition</strong>, and it won the 2021 CaGIS <strong>Arthur Robinson Award</strong> for best print map.
</p>
</div>
<div class="col col-md-3 col-0"></div>
</div>
<div class="row">
<div class="col col-lg-1 col-md-1 col-sm-0 col-0">
</div>
<div class="col col-lg-10 col-md-10 col-sm-12 col-12">
<a href="img/slivers-of-an ancient-forest-sml.png"><img class="portfolio-image" src="img/slivers-of-an ancient-forest-sml.png"></a>
</div>
<div class="col col-lg-1 col-md-1 col-sm-0 col-0">
</div>
</div>
</div>
</div>
</body>
</html>