-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
78 lines (76 loc) · 3.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/html5reset.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>About</title>
<link rel="icon" href="imgs/favicon.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-138350456-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-138350456-1');
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<a class="jump" href="#main" >Jump to Content</a>
<header>
<div class="global-nav" id="topnav">
<div class="navbar">
<div class="navbar_link navbar_link-brand">
<a href="index.html">Amanda Bassett</a>
</div>
<div class="navbar_link navbar_link-toggle" aria-label="menu icon">
<i aria-hidden="true" class="fas fa-bars"></i>
</div>
<nav class="navbar_items navbar_items--right">
<ul class="navbar_link">
<li><a href="index.html">Work</a></li>
<li><a href="about.html" class="current">About</a></li>
<li><a href="docs/portfolio_resume.pdf" target="_blank">Resume (PDF)</a></li>
</ul>
</nav>
</div>
</div>
</header>
<main id="main">
<div class="spacer">
</div>
<div class="content">
<div class="flex-container">
<img src="imgs/personal_photo2.jpg" alt="Photo of Amanda"/>
<div class="about-text">
<h1 id="hi">Hi, I'm Amanda!</h1>
<p>I’m a second-year master’s student at the University of Michigan School of Information with a focus on agile software development.</p>
<br />
<p>I’ve always been curious about what makes people tick, so I chose to study psychology and economics as an undergraduate, primarily focusing my studies within behavioral economics. While working at an automotive advertising agency after graduation, I had the opportunity to examine consumer behavior in-depth to optimize our campaigns. I was also able to apply several new technologies within the programmatic media space to shape our voice and brand. This was where I found my niche at the intersection of psychology and tech, and these experiences created a natural segue into the field of UX. I’m passionate about design that facilitates positive social change.</p>
<br />
<p>During my free time, you can find me running, cooking, or spending time with family and friends.</p>
</div>
</div>
</div>
</main>
<br />
<footer>
<div class="icons">
<a href="mailto:[email protected]" aria-label="Email to [email protected]" class="email-icon">
<i aria-hidden="true" class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/amanda-bassett-62b06887" aria-label="LinkedIn" target="_blank" class="linkedin">
<i aria-hidden="true" class="fab fa-linkedin-in"></i>
</a>
</div>
<span class="copyright">
© Amanda Bassett 2019
</span>
</footer>
<script src="javascript/my_javascript.js"></script>
</body>
</html>