-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
393 lines (341 loc) · 15.7 KB
/
index.html
File metadata and controls
393 lines (341 loc) · 15.7 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
<!DOCTYPE html>
<html>
<head>
<title>Shivani Doshi</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Lato", sans-serif;
}
body,
html {
height: 100%;
color: #777;
line-height: 1.8;
}
/* Create a Parallax Effect */
.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* First image (Logo. Full height) */
.bgimg-1 {
background-image: url('/images/lightbackground2.jpg');
min-height: 100%;
}
/* Second image (Work) */
.bgimg-2 {
background-image: url("/images/lightbackground4.svg");
min-height: 400px;
}
/* Third image (Contact) */
.bgimg-3 {
background-image: url("/images/lightbackground3.svg");
min-height: 400px;
}
.bgimg-4 {
background-image: url("/images/background-pic.jpeg");
min-height: 400px;
}
.w3-wide {
letter-spacing: 10px;
}
.w3-hover-opacity {
cursor: pointer;
}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4 {
background-attachment: scroll;
min-height: 400px;
}
}
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
/* If you want dots under the hoverable text */
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
font-size: small;
width: 200px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px;
border-radius: 6px;
bottom: 100%;
left: 0%;
margin-left: -70px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
}
.col-md-4 {
float: left;
width: 33.33333333%;
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.button {
font-family: "Lato", sans-serif;
font-size: small;
background-color: #000;
color: white;
width: 200px;
border-radius: 6px;
}
.work-text {
font-size: small;
}
.work-img:hover {
opacity: 100%;
}
.figcaption {
font-family: "Lato", sans-serif;
font-size: small;
text-align: center;
}
</style>
<body>
<div class="w3-top">
<div class="w3-bar" id="myNavbar">
<a class="w3-bar-item w3-button w3-hover-black w3-hide-medium w3-hide-large w3-right" href="javascript:void(0);" onclick="toggleFunction()" title="Toggle Navigation Menu">
<i class="fa fa-bars"></i>
</a>
<a href="#home" class="w3-bar-item w3-button"><i class="fa fa-home"></i> HOME</a>
<a href="#about" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-user"></i> ABOUT</a>
<a href="#work" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-briefcase"></i> WORK</a>
<a href="#interests" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i> INTERESTS</a>
<a href="#contact" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-envelope"></i> CONTACT</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium">
<a href="#about" class="w3-bar-item w3-button" onclick="toggleFunction()">ABOUT</a>
<a href="#work" class="w3-bar-item w3-button" onclick="toggleFunction()">WORK</a>
<a href="#interests" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i>INTERESTS</a>
<a href="#contact" class="w3-bar-item w3-button" onclick="toggleFunction()">CONTACT</a>
</div>
</div>
<!-- First Parallax Image with Logo Text -->
<div class="bgimg-1 w3-display-container w3-opacity-min" id="home">
<div class="w3-display-middle" style="white-space:nowrap;">
<span class="w3-center w3-padding-large w3-black w3-xxxlarge w3-wide w3-animate-opacity w3-hover-text-white">SHIVANI
<span class="w3-hide-small">DOSHI</span> </span>
</div>
</div>
<!-- Container (About Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<div class="w3-row">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="/images/me-prof.jpg" class="w3-round w3-image" width="550" height="333">
</div>
<div class="w3-col m6 w3-center w3-padding-large w3-padding-64 w3-large">
<br>
<p> Welcome to my website! My name is Shivani and I'm a Software Engineer at Veeva Systems. I graduated with an MEng in Computer Science from Cornell Tech in May '21 and graduated with a BS in Computer Science from UC San Diego in June '20.
Feel free to scroll through my page and learn a little more about me!</p>
</div>
</div>
</div>
<!-- Second Parallax Image with Work Text -->
<div class="bgimg-2 w3-display-container">
<div class="w3-display-middle">
<span class="w3-xxxlarge w3-wide">WORK</span>
</div>
</div>
<!-- Container (Work Section) -->
<div class="w3-content w3-container w3-padding-64" id="work">
<div class="w3-row w3-center">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="/images/Veeva.png" class="w3-image w3-opacity work-img">
</div>
<div class="w3-col m6 w3-center w3-padding-large work-text">
<p>I started working at Veeva Systems in August '21 on the CRM Management Console (CMC) team under my manager, Steve Butler. CMC is a Spring Boot web application that is written in Java and hosted on AWS. My role on the team involves (1)
designing, implementing and delivering cloud-based features, (2) addressing defects that arise from various parts of the application, (3) implementing unit and integration testing to improve the quality of the code we deliver, (4)
upgrading, refactoring and rectifying inconsistencies in the structure of our backend and (5) helping onboard junior developers.</p>
</div>
</div>
<div class="w3-row w3-center">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="/images/Workday.png" class="w3-image w3-opacity work-img">
</div>
<div class="w3-col m6 w3-center w3-padding-large work-text">
<p>Over the summer of '19, I interned at Workday as a Software Applications Engineering Intern under my manager, Balasubramanian Kumar. Through the summer, I built various robust REST API's using Workday's proprietary language called XpressO
(XO) and built a reference application to demonstrate their usages. At the end of the summer, a fellow intern and I presented our work on a poster board to various people at the company. Over the course of 3 months, I made many good
friends, explored San Francisco through company-held outings and learned the day-to-day on how a large-scale tech company runs.</p>
</div>
</div>
<div class="w3-row w3-center">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="/images/ServiceNow.jpg" class="w3-image w3-opacity work-img">
</div>
<div class="w3-col m6 w3-center w3-padding-large work-text">
<p>Over the summer of '18, I interned at ServiceNow in San Diego as a Quality Engineering Intern under my manager, Abelardo Hernandez. Through the internship, I (1) wrote basic scripts in JavaScript, (2) built a small-scale weather application
in Java, (3) performed bi-weekly regression testing, (4) wrote automated Selenium tests and (5) verified multiple problem stories and fix targets. Due to my performance over the summer, my internship got extended through the fall quarter
of my junior year into a part-time job. Apart from encouraging my technical growth, the company hosted various opportunities to do volunteer work and socialize with other people in the industry.</p>
</div>
</div>
<div class="w3-row w3-center">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="/images/CSELogo.png" class="w3-image w3-opacity work-img">
</div>
<div class="w3-col m6 w3-center w3-padding-large work-text">
<p>I served as a student instructor for the CSE department at UC San Diego for 7 quarters under 3 different professors (Yingjun Cao, Gary Gillespie and Nadia Polikarpova). I tutored for CSE 8A (Fall '17), CSE 8B (Winter '18), CSE 12 and 15L
(Spring '18), CSE 15L (Fall '18), CSE 8A and 15L (Winter '19), CSE 100 (Spring '19) and CSE 130 (Fall '19). My job as a tutor involved (1) holding numerous tutor hours, (2) proctoring both midterm and final exams, (3) answering questions
posted on the classes Q/A platform, (4) grading weekly programming assignments and exams, (5) writing testing scripts for automated grading and (6) helping with other basic logistical work wherever I could.</p>
</div>
</div>
<div class="w3-row-padding w3-center w3-section">
<form>
<button class="button w3-opacity-min w3-hover-opacity" formaction="https://shivanidoshi26.github.io/docs/Resume.pdf" formtarget="_blank">CLICK FOR MY RESUME</button>
</form>
</div>
</div>
<!-- Third Parallax Image with Interests Text -->
<div class="bgimg-3 w3-display-container">
<div class="w3-display-middle">
<span class="w3-xxxlarge w3-wide">INTERESTS</span>
</div>
</div>
<!-- Container (Interests Section) -->
<div class="w3-content w3-container w3-padding-64" id="interests">
<div class="w3-row w3-center w3-padding-large">
<div class="w3-col m2">
<img src="/images/sing.png" class="w3-image w3-opacity-min">
<figcaption>Singing</figcaption>
</div>
<div class="w3-col m3">
<p> </p>
</div>
<div class="w3-col m2">
<img src="/images/dance.png" class="w3-image w3-opacity-min">
<figcaption>Dancing</figcaption>
</div>
<div class="w3-col m3">
<p> </p>
</div>
<div class="w3-col m2">
<img src="/images/travel.png" class="w3-image w3-opacity-min">
<figcaption>Traveling</figcaption>
</div>
</div>
<div class="w3-row w3-center w3-padding-large">
<div class="w3-col m2">
<img src="/images/fitness.png" class="w3-image w3-opacity-min">
<figcaption>Working Out</figcaption>
</div>
<div class="w3-col m3">
<p> </p>
</div>
<div class="w3-col m2">
<img src="/images/games.png" class="w3-image w3-opacity-min">
<figcaption>Playing Games</figcaption>
</div>
<div class="w3-col m3">
<p> </p>
</div>
<div class="w3-col m2">
<img src="/images/mountain.png" class="w3-image w3-opacity-min">
<figcaption>Hiking</figcaption>
</div>
</div>
</div>
<!-- Fourth Parallax Image with Contact Text -->
<div class="bgimg-4 w3-display-container">
<div class="w3-display-middle">
<span class="w3-xxxlarge w3-wide">CONTACT</span>
</div>
</div>
<!-- Container (Contact Section) -->
<div class="w3-content w3-container w3-padding-64" id="contact">
<div class="w3-row w3-padding-large w3-center">
<div class="w3-col l6 w3-center w3-padding-large">
<img src="/images/SanDiego.png" class="w3-round w3-image" width="288" height="102">
</div>
<div class="w3-col l6 w3-panel w3-center">
<br>
<br>
<div class="w3-large w3-margin-bottom">
<i class="fa fa-envelope fa-fw w3-xlarge w3-margin-right"></i class="w3-large"><i>Email: shivanidoshi26@gmail.com</i>
<br>
<i class="fa fa-phone fa-fw w3-xlarge w3-margin-right"></i><i class="w3-large">Phone: +1 (669) 203-7000</i>
<br>
</div>
<p>I'd love your feedback <i class="fa fa-comments"></i></p>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64 w3-opacity-min">
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section">
<i><a href="https://www.facebook.com/shivanidoshi26" target="_blank" style="text-decoration:none"
class="fa fa-facebook-official w3-hover-opacity"></a></i>
<i><a href="https://www.instagram.com/shivanidoshi26/" target="_blank" style="text-decoration:none"
class="fa fa-instagram w3-hover-opacity"></a></i>
<i><a href="https://www.linkedin.com/in/shivani-d-50a446106/" target="_blank" style="text-decoration:none"
class="fa fa-linkedin w3-hover-opacity"></a></i>
</div>
<p>Powered by Shivani Doshi</p>
</footer>
<script>
// Modal Image Gallery
function onClick(element) {
// document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
// Change style of navbar on scroll
window.onscroll = function() {
myFunction()
};
function myFunction() {
var navbar = document.getElementById("myNavbar");
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white";
} else {
navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", "");
}
}
// Used to toggle the menu on small screens when clicking on the menu button
function toggleFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>