-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
80 lines (73 loc) · 3.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Greg Grube's Geography - Bio</title>
<!-- <link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'> -->
<!--put your Bootstrap stylesheet links below this comment and above style.css-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/style.css">
<link href="css/heroic-features.css" rel="stylesheet">
<!--[if IE<9]>
<link rel="stylesheet" href="css/style.ie.css">
<![endif]-->
</head>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">Greg Grube's Geography</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" a href="about.html">Bio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<header class="jumbotron my-1">
<h1 class="display-5"><strong>About Me</strong></h1>
</header>
</div>
<div class="container">
<div class="row">
<div class="col-md-3 col-md-offset-0 col-sm-3 col-sm-offset-0 col-xs-6 col-xs-offset-3">
<img src="assets/GregPic.jpg" alt="world icon" class="img-responsive center-block" id="about-world" />
</div>
<div class="col-md-9 col-md-offset-0 col-sm-9 col-sm-offset-0 col-xs-10 col-xs-offset-1">
<p>
Hello, I'm Greg and thanks again for looking at my site. I've been a GIS professional since 2009, when I discovered that making great maps doesn't mean you have to be good at drawing.
</p>
<p>
I graduated from UW-Madison with a double major in geography and political science, a love for maps and no idea how to turn that into a job. While taking an internship with the National Park Service in Virginia, I learned how to use GIS and realized: this is really fun!
</p>
<p>
After GIS jobs in El Paso, TX and Janesville, WI sandwiched around returning to Madison to get my Graduate GIS Certificate, I am currently working in elections for the State of Wisconsin and recently graduated from the GIS and Web Map Programming Master's program at UW-Madison.
</p>
<p>
Please see my resume for more information on my <a href="resume.html">qualifications</a> and feel free to reach out with questions with my <a href="contact.html">contact info.</a> Happy browsing!
</p>
</div>
</div>
</div>
<!--put your external script links here-->
<script type="text/javascript" src="lib/jquery-1.11.3.js"></script>
<script type="text/javascript" src="lib/bootstrap.min.js"></script>
</html>