-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-156174433-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-156174433-3');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Public+Sans:400,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./dist/main.css" />
<script src="https://d3js.org/d3.v5.js"></script>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>BBG Explorer Tree</title>
</head>
<body>
<header>
<div class="header-left">
<h1>BROOKLYN BOTANICAL GARDEN TREE EXPLORER</h1>
</div>
<div class="header-right">
<ul>
<li>
<a target="_blank" href="https://www.linkedin.com/in/ed-herman/" title="LinkedIn">
<img src="https://cdn3.iconfinder.com/data/icons/capsocial-round/500/linkedin-512.png" alt="LinkedIn Logo" class="link-logo">
</a>
</li>
<li>
<a target="_blank" href="https://github.com/edherm/" title="GitHub Profile">
<img src="https://cdn0.iconfinder.com/data/icons/octicons/1024/mark-github-512.png" alt="Github Logo" class="link-logo">
</a>
</li>
<li>
<a target= "_blank" href="https://edherm.github.io/" title="Portfolio">
<img src="./src/images/user-circle.png" alt="Portfolio" class="link-logo">
</a>
</li>
</ul>
</div>
</header>
<div class="content-container">
<main id="main">
<script src="./dist/main.js"></script>
</main>
<aside>
<div class="info-container">
<div>
<h3 class="info-h3">Additional Information</h3>
<p>BBG has an enormous collection of living plants spread throughout
the gardens. Most collections contain a wide variety of genera and
this graphic enables you to view the variety of specimens in each collection.</p>
<p>How to use this visualization:</p>
<ul class="info-ul">
<li>The tree expands from a garden collection, to genera, and finally to an individual plant specimen.</li>
<li>Click on a circle node to explore the next layer of data.</li>
</ul>
</div>
<div>
<p>Source:</p>
<a href="https://www.bbg.org/cgi/plant-records/search.cgi">BBG's Plant-Records Search</a>
</div>
</div>
</aside>
</div>
<footer>
</footer>
</body>
</html>