-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
53 lines (53 loc) · 2.83 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
<!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>
</head>
<body>
<a class="jump" href="#main" >Jump to Content</a>
<header>
<nav class="top-nav">
<ul>
<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</a></li>
<!-- <li><a href="contact.html">Contact</a></li> -->
</ul>
</nav>
</header>
<main id="main">
<div class="flex-container">
<div class="about-img">
<img src="imgs/personal_photo2.jpg" alt="Photo of Amanda"/>
</div>
<div class="about-text">
<h1 id="hi">Hi, I'm Amanda!</h1>
<p>I’m a first-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>
</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">
Hand-coded with ♥ <br />© Amanda Bassett 2019
</span>
</footer>
</body>
</html>