forked from codewithsadee/vcard-personal-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
228 lines (135 loc) · 5.02 KB
/
Copy pathindex.html
File metadata and controls
228 lines (135 loc) · 5.02 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!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>Sreeja Apparaju</title>
<!--
- favicon
-->
<link rel="icon" type="image/png" href="./assets/images/my-avatar.png">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<!--
- #MAIN
-->
<main>
<!--
- #SIDEBAR
-->
<aside class="sidebar" data-sidebar>
<div class="sidebar-info">
<figure class="avatar-box">
<img src="./assets/images/my-avatar.png" alt="Sreeja Apparaju" width="80">
</figure>
<div class="info-content">
<h1 class="name" title="Sreeja Apparaju">Sreeja Apparaju</h1>
<p class="title">Software Engineer</p>
</div>
<button class="info_more-btn" data-sidebar-btn>
<span>Show Contacts</span>
<ion-icon name="chevron-down"></ion-icon>
</button>
</div>
<div class="sidebar-info_more">
<div class="separator"></div>
<ul class="social-list">
<li class="social-item">
<a href="mailto:sreeja.apparaju@berkeley.edu" class="social-link">
<ion-icon name="mail"></ion-icon>
</a>
</li>
<li class="social-item">
<a href="https://www.linkedin.com/in/sreejaapparaju/" class="social-link">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
<li class="social-item">
<a href="https://github.com/sreeja-apparaju" class="social-link">
<ion-icon name="logo-github"></ion-icon>
</a>
</li>
</ul>
</div>
</aside>
<!--
- #main-content
-->
<div class="main-content">
<!--
- #NAVBAR
-->
<nav class="navbar">
<ul class="navbar-list">
<li class="navbar-item">
<a href="index.html" class="active">About</a>
</li>
<li class="navbar-item">
<a href="portfolio.html">Portfolio</a>
</li>
<li class="navbar-item">
<a href="experience.html">Experience</a>
</li>
</ul>
</nav>
<!--
- #ABOUT
-->
<article class="about active" data-page="about">
<header>
<h2 class="h2 article-title">Hi, I'm Sreeja!</h2>
</header>
<section class="about-text">
<p>
<p>
I recently graduated from UC Berkeley with a degree in Computer Science and Economics. At Cal, I was a head student instructor for the first Data Science in Economics Models course (DATA 88E), conducted research in computational economics, and led Berkeley Venture Capital org <br />
<br />
I'm passionate about <u>machine learning, education, and tech for social good</u>. I'm currently learning more about deep learning and computer graphics <br />
<br />
<em>Currently exploring </em>: learning to drive in LA (it's been rough!), enjoying cooking (and 'trying' to not create a mess of my kitchen), outdoor activities and exploring LA <br />
<br />
<em>Currently reading : Radically Human </em> by Paul R. Daugherty and H. James Wilson <br />
<br />
To learn more about my selected projects and experiences, please click on the Portfolio and Experience tab respectively!
</p>
<br />
<div class="image-gallery">
<div class="image-container">
<img src="./assets/images/LAH.jpg" alt="Judge at LA Hacks">
<p class="image-description">Invited as a Judge for (UC)LA Hacks 2024</p>
</div>
<div class="image-container">
<img src="./assets/images/archery.JPG" alt="Learning Archery">
<p class="image-description">Learning Archery every sunday</p>
</div>
<div class="image-container">
<img src="./assets/images/profile.jpg" alt="Amazon Prime's Red Carpet Event">
<p class="image-description"> Attended Amazon Prime's Red Carpet Event</p>
</div>
</div>
</section>
</article>
</div>
</main>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>