forked from Ada-C18/personal-portfolio-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
123 lines (122 loc) · 4.32 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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>About me</title>
<link href="styles/style.css" rel="stylesheet" />
<link href="styles/about.css" rel="stylesheet" />
</head>
<body>
<header class="header">
<h1 class="title-name">Fataneh Karandish</h1>
<nav>
<ul class="nav-menu">
<li class="nav-menu-item"><a href="./index.html">Home</a></li>
<li class="nav-menu-item">
<a href="./portfolio.html">Portfolio</a>
</li>
<li class="nav-menu-item"><a href="./about.html">About me</a></li>
</ul>
</nav>
</header>
<main class="main">
<div class="left-panel"></div>
<section class="center-panel">
<h3>ABOUT ME</h3>
<p>
I am a motivated scientist with a passion for innovation in technology
and improving people's life experiences. I have received my Ph.D.
degree in Pharmaceutical Science. In my previous role as a scientist,
I developed couple of vaccines such as Covid-19, Shigella, and
Haemophilus Influenza Type A (HIA). I am currently transitioning to be
a software developer. I have been interested to be a developer for a
long time, it seemed like the right time to pursue this dream. I am so
grateful to get the help and support from Ada Developer Academy.
</p>
<h3>EDUCATION</h3>
<h4>North Dakota State University, Fargo, ND</h4>
<ul>
<li>Ph.D. in Pharmaceutical Sciences(GPA: 4.0)</li>
</ul>
<h3>CERTIFICATES</h3>
<ul>
<li>Certificate of Statistic (Graduate degree, NDSU)</li>
<li>Certificate of leadership (Master of Success, NDSU)</li>
<li>Certificate of communication to a General Audience (NDSU)</li>
</ul>
<h3>AWARDS AND HONORS</h3>
<ul>
<li>
First Place Award Winner (5000$) at
<a
href="https://www.ndsu.edu/news/story_archive/innovationchallenge2017winners/"
target="_blank"
>NDSU</a
>
Innovation Challenge '17 (2017).
</li>
<li>
Developed a Method Using Electronic Chip to Detect Pancreatic
Cancer.
</li>
<li>
Love of Learning National Award (500$), The Honor society of Phi
Kappa Phi.
</li>
<li>
Invited Speaker at State of Technology Conference (<a
href="https://www.ndchamber.com/"
target="_blank"
>ND Chamber of Commerce</a
>).
</li>
</ul>
<h3>LEADERSHIP EXPERIENCE</h3>
<ul>
<li>
Women in Bio Volunteer Program Commity, Seattle Chapter
(2018-present)
</li>
<li>Life Science Wahington (Event Assistant Volunteer 2022)</li>
<li>Puget Sound Data Science Confernce (2021-present)</li>
<li>Volunteer Judge, Bio Expo-Shoreline Community College(2018)</li>
<li>TEDx NDSU, Event Organizer(2017)</li>
<li>Podium and Poster Judge PGSRM Conferences</li>
</ul>
</section>
<aside class="right-panel">
<figure>
<iframe
width="320"
height="180"
src="https://www.youtube.com/embed/hJsktWtbwXg"
></iframe>
</figure>
<figure>
<img
class="images"
src="./assets/images/InnovativeChallange.jpeg"
alt="Innovation challenge Award"
/>
<figcaption>Innovation Challenge Award 2017</figcaption>
</figure>
<figure>
<img
class="images"
src="./assets/images/NDChamberOfCommerce.jpeg"
alt="Giving Speech About Cancer Screeing Technalogy at ND chamber of commerce"
/>
<figcaption>
Giving Speech About Cancer Screeing Technalogy at ND Chamber of
Commerce
</figcaption>
</figure>
</aside>
</main>
<footer class="footer">
<p>Copyright ©2022 Fataneh Karandish. All rights reverved.</p>
</footer>
</body>
</html>