-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
106 lines (91 loc) · 4.05 KB
/
Copy pathabout.html
File metadata and controls
106 lines (91 loc) · 4.05 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Metro</title>
<!-- favicon -->
<link rel="shortcut icon" type="image/png" href="styles/assets/logo.png" />
<!-- link google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Sen:wght@400;700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/35ca208e9c.js" crossorigin="anonymous"></script>
<link rel="stylesheet"
href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css" />
<!-- linking the stylesheet -->
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<!-- animation on scroll -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<!-- navigation bar-->
<main>
<nav>
<div class="wrapper navBar">
<div class="navListContainer">
<ul class="navList">
<li>
<a href="index.html">Work</a>
</li>
<li>
<a href="about.html" class="focus">About</a>
</li>
<li>
<a href="resume.html">Resume</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="aboutMeContainer wrapper">
<div class="aboutMeImage">
<div>
<img src="styles/assets/aboutMe.jpg" alt="Image of farzana prianka">
</div>
<p class="aboutMeImageCaption">Its me! While bungee jumping from 160 feet into glacial fed Cheakamus
River!</p>
</div>
<div class="aboutMeDescription">
<h4>Nice to meet you!!</h4>
<p> Hey there, I'm Farzana! I am a User Experience Designer focused on creating more connected and
easier to use world. I landed into UX when I transitioned into a person from "love what you do" to
"do
what you love". I love exploring new places, spending time with my camera and like
anyone else my age I'm a self proclaimed foodie. My current home is Canada but I mostly grew up in
Dhaka, the vibrant capital of Bangladesh. While being fascinated with all aspects of user experience
design, I specialize in ideation, storytelling and interaction design. Being a curious person, I
love diving into why and how people use things, and transforming those insights into
memorable digital experience.
</p>
<div>
<div>
<h5>Reach out to me!</h5>
<p class="email">farzana.prianka@gmail.com</p>
</div>
<div>
<a href="https://twitter.com/PriankaFarzana" target="_blank" rel="noopener noreferrer">
<i class="fab fa-twitter-square"></i>
</a>
<a href="https://www.linkedin.com/in/far-pri/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/FarzanaPrianka" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github-square"></i>
</a>
</div>
</div>
</div>
</div>
</main>
<!-- footer -->
<footer>
<div>
<p class="footerNote">
Farzana Prianka © 2020
</p>
</div>
</footer>
</body>
</html>