-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
57 lines (49 loc) · 2.46 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Aileen Clarke</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href = "css/bootstrap.min.css" >
<link rel="stylesheet" href = "css/style.css" >
</head>
<body>
<div class="container-fluid">
<nav class="navbar">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Aileen Clarke</a>
</div>
<div>
<ul class="nav navbar-nav">
<li><a href="index.html">Portfolio</a></li>
<li class="active"><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</div>
</nav>
<div class="row">
<div class="col col-sm-1 col-md-1 col-lg-1 col-xl-1"></div>
<div class="col col-sm-8 col-md-8 col-lg-8 col-xl-8">
<h2 class="about-header">Hi!</h2>
<h2 class="about-header">I'm Aileen.</h2>
<p class="about-me">I'm a cartographer currently living in Madison, Wisconsin where I completed my Masters in Cartography and GIS at the University of Wisconsin, Madison in December 2022.
I'm currently Junior Developer with the USGS Web Informatics and Mapping team and an editor for the North American Cartographic Information Society's <a hrf=https://atlasofdesign.org/ target="blank">Atlas of Design</a>, Version 7, which will be released in October 2024.
</p>
<p class="about-me">I'm passionate about using maps and interactives as a means of storytelling. In my free time I enjoy making maps of DC, collecting weird vintage cookbooks, taking walks to pet the neighborhood cats, and biking with friends. </p>
<p class="about-me">Contact me at <a href=aileenclarke4@gmail.com target="_blank"><em>aileenclarke4@gmail.com</em></a> or find me on <a href=https://github.com/aileenclarke target="_blank"><em>Github</em></a> and <a href=https://www.linkedin.com/in/aileenclarke target="_blank"><em>LinkedIn</em></a>.</p>
</div>
</div>
<div class="row">
<div class="foot col">
<br>
<br>
<br>
<br>
<p>Aileen Clarke, 2021</p>
</div>
</div>
</div>
</body>
<script type=“text/javascript” src=“lib/bootstrap.min.js”></script>
</html>