-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvaishnavi.html
More file actions
198 lines (176 loc) · 4.6 KB
/
vaishnavi.html
File metadata and controls
198 lines (176 loc) · 4.6 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
<!DOCTYPE html>
<html>
<head>
<title>Vaishnavi V - Introduction</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
.fa {
display: inline-block;
position: relative;
cursor: pointer;
width: 25px;
height: 25px;
font-size: 25px;
text-align: center;
text-decoration: none;
}
.fa:hover {
opacity: 0.7;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-instagram {
background: #83046C;
color: white;
}
th, td {
padding: 5px;
}
table, th, td {
border: 1px solid black;
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.column {
float: left;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
}
a {text-align: center;}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin: 8px;
display: flex;
justify-content: center;
align-items: center;
}
.about-section {
padding: 30px;
text-align: center;
background-color: #7A239C;
color: white;
}
.container {
padding: 0 16px;
}
.container::after, .row::after {
content: "";
clear: both;
display: table;
}
.title {
color: grey;
}
.card-img-top {
width: 30%;
height: 40%;
margin-left: auto;
margin-right: auto;
border-radius: 50%;
text-align: center;
object-fit: contain;
}
@media screen and (max-width: 650px) {
.column {
width: 100%;
display: block;
}
}
</style>
</head>
<body>
<div class="about-section">
<h1>Vaishnavi V</h1>
<p>Software Engineer, Bangalore</p>
</div>
<div class="row">
<div class="card">
<img src="VaishnaviV.jpg" alt="VV" class="card-img-top img-fluid">
<div class="container">
<h3> Work Experiences in Organizations </h3>
<table>
<tr>
<th>Company</th>
<th>Designation</th>
<th>Years Active</th>
<th>Experience</th>
</tr>
<tr>
<td>Cisco</td>
<td>Software Engineer</td>
<td>December 2019 - Present</td>
<td>Involved in development of Optical Applications for the upcoming XR based optical line systems (NCS1010)</td>
</tr>
<tr>
<td>Temenos India</td>
<td>Software Engineer</td>
<td>June 2018 - December 2019</td>
<td>Invloved in development of applications for Banking Framework based on T24 model</td>
</tr>
<tr>
<td>Temenos India</td>
<td>Intern</td>
<td>Jan 2018 - May 2018</td>
<td>Got adequate exposure to various tools and technologies used in the organization and good understanding of SDLC</td>
</tr>
</table>
<h3> Education </h3>
<table>
<tr>
<th>Institution</th>
<th>Course</th>
<th>Year of Passing</th>
<th>Aggregate</th>
</tr>
<tr>
<td>Bits Pilani</td>
<td>M.Tech in Software Engineering</td>
<td>2023</td>
<td>-</td>
</tr>
<tr>
<td>BMS Institute of Technology & Management</td>
<td>BE in Software Engineer</td>
<td>August 2018</td>
<td>81% (Distinction)</td>
</tr>
<tr>
<td>CMR National Junior College</td>
<td>12th</td>
<td>May 2014</td>
<td>99.75% (PCMC)</td>
</tr>
<tr>
<td>Ryan International School</td>
<td>10th</td>
<td>April 2012</td>
<td>90.2%</td>
</tr>
</table>
<h3> Proficient Programming Languages & Technologies</h3>
<p align="justify">C (Embedded Programming), Java, Python, SQL, Android Development (Basics), Data Science</p>
<h3> Certifications </h3>
<a href="https://www.coursera.org/account/accomplishments/specialization/certificate/RUUJANPYJU94">IBM Data Science, </a>
<a href="https://graduation.udacity.com/confirm/DT6DDLYD">Android Basics Nanodegree by Google</a>
<h3> Hobbies </h3>
<p align="justify">My hobbies include reading, painting and binge watching web series.</p>
<a href = "mailto: 2021mt93064@wilp.bits-pilani.ac.in">Contact Me</a>
<a href="http://www.instagram.com/vaishnavi_v03" class="fa fa-instagram"></a>
<a href="http://www.linkedin.com/in/vaishnavi-v-a01b94147" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</body>
</html>