-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
166 lines (138 loc) · 6.89 KB
/
Copy pathindex.html
File metadata and controls
166 lines (138 loc) · 6.89 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!-- This page and source is modified by Jessica Jang
Original page:
https://www.youtube.com/watch?v=_xkSvufmjEs&ab_channel=freeCodeCamp.org
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- need for small devices or big devices -->
<title>Jessica Portfolio Website</title>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css"> <!-- normalized file for different browsers-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css" integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous" /> <!-- access google font as well to secrue link -->
<!-- update these with my own font -->
<!-- <link rel="preconnect" href="https://fonts.gstatic.com"> -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<!-- my own css file include -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo">
<img src="img/logo.jpeg" alt=""> <!-- logo -->
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="#home" class="nav__link">Home</a></li>
<li class="nav__item"><a href="#services" class="nav__link">My Services</a></li>
<li class="nav__item"><a href="#about" class="nav__link">About me</a></li>
<li class="nav__item"><a href="#work" class="nav__link">My Work</a></li>
</ul>
</nav>
</header>
<!-- Introduction -->
<section class="intro" id="home">
<h1 class="section__title section__title--intro">
Hi, I am <strong>Jessica Jang</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">Software Engineer</p>
<img src="img/Jessica2019.jpg" alt="subtitle picture" class="intro__img">
</section>
<!-- My services -->
<section class="my-services" id="services">
<h2 class="section__title section__title--services">What I do</h2>
<div class="services">
<div class="service">
<h3> Deep Learning </h3>
<ul class="service-list">
<li> Develop and design deep learning algorithms </li>
<li> Extensive work with deep neural networks (e.g. Graph NN, CNN, RNN, Attention/Transformer)
and deep reinforcement learning
</li>
<li> Implement and train DL/RL algorithms in high-level languages/frameworks (PyTorch, Tensorflow, Caffe)</li>
<li> Model compression, Natural Language Processing, Computer Vision, Deep Generative Models</li>
</ul>
</div> <!-- / service -->
<div class="service">
<h3> Web Development </h3>
<ul class="service-list">
<li> Create User Interfaces and Web support </li>
<li> Test websites across all web browsers, operating systems and devices </li>
<li> Create and modify stored procedures (SQL scripts) </li>
<li> Experiences in Microsoft .NET framwork (C#, Typescript, HTML/CSS)
and increasing knowledge in React, and Bootstrap frameworks
</li>
</ul>
</div> <!-- / service -->
<div class="service">
<h3> Software Development </h3>
<ul class="service-list">
<li> Design and deliver softwares and tools powering user platform </li>
<li> Collaborate with customers, product managers, designers and developers to understand
customer needs and translate them into product requirements and sepcifications</li>
<li> Effectively use critical thinking and problem solving to develop efficient software</li>
<li> Familiar in Git version control system and Docker containers,
and versed in the practices and idelogoies of the Scaled Agile Framework (SAFe)
</li>
</ul>
</div> <!-- / service -->
</div><!-- /services -->
<a href="#work" class="btn">My Work</a>
</section>
<!-- About me -->
<section class="about-me" id="about">
<!-- add header if i want to -->
<h2 class="section__title section__title--about">Who I am</h2>
<p class="section__subtitle section__subtitle--about">Self-motivated Software Engineer</p>
<div class="about-me__body">
<p>As self-motivated software engineer, I am currently graduate student at South Dakota State University with Computer Science major. I work as Machine Learning Graduate Research Assistant in Intelligent Vision Laboratory and work with other departments and research institutions. Expected graduation date is Aug 2021.</p>
<p>I am enthusasict about learning new things and this makes me gain various work experiences about software development, from Aritifical Intelligence to Web development. In addition to my experience, I love working with difference people and discussing about things. As Vice President in ACM, I work with club members, coordinate and engage with companies from around the state. </p>
<p>I like chanllenging myself and there are achievements from past or current challenges/projects below. Please check out!</p>
</div>
<img src="img/jessica_whoIam.jpg" alt="surfer" class="about-me__img">
</section>
<!-- My Work -->
<section class="my-work" id="work">
<!-- add header if i want to -->
<h2 class="section__title section__title--work">Work</h2>
<p class="section__subtitle section__subtitle--work"> A collection of projects</p>
<div class="portfolio">
<!-- Portfolio item 01 -->
<a href="portfolio-item.html" class="portfolio__item">
<img src="img/work1.png" alt="" class="portfolio__img">
</a>
<!-- Portfolio item 02 -->
<a href="#" class="portfolio__item">
<img src="img/work2.png" alt="" class="portfolio__img">
</a>
<!-- Portfolio item 03 -->
<a href="#" class="portfolio__item">
<img src="img/work3.png" alt="" class="portfolio__img">
</a>
<!-- Portfolio item 04 -->
<a href="#" class="portfolio__item">
<img src="img/work4.png" alt="" class="portfolio__img">
</a>
<!-- Portfolio item 05 -->
<a href="#" class="portfolio__item">
<img src="img/work5.png" alt="" class="portfolio__img">
</a>
</div>
</section>
<!-- footer -->
<footer class="footer">
<!-- <a href="mailto:jessica.youjeong@gmail.com" class="footer__link">E-mail to Jessica</a> -->
<a href="YoujeongJang_resume.pdf" class="footer__link" download>Download Resume</a>
<ul class="social-list">
<li class="social-list__item"><a class="social-list__link" href="https://www.github.com/jessicajang"><i class="fab fa-github"></i></a></li>
<li class="social-list__item"><a class="social-list__link" href="https://www.linkedin.com/in/jessica-youjeong-jang"><i class="fab fa-linkedin"></i></a></li>
<li class="social-list__item"><a class="social-list__link" href="mailto:jessica.youjeong@gmail.com"><i class="far fa-envelope"></i></a></li>
</ul>
</footer>
<script src="js/index.js"></script>
</body>
</html>