-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
244 lines (224 loc) · 8.6 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
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
<!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>Vivek Yaligar's Profile</title>
<!-- Roboto Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<!-- MDB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/4.1.0/mdb.min.css" rel="stylesheet" />
<!-- MDB -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/4.1.0/mdb.min.js"></script>
<style>
body {
font-family: 'Roboto', sans-serif;
}
/* The actual timeline (the vertical ruler) */
.main-timeline {
position: relative;
}
/* The actual timeline (the vertical ruler) */
.main-timeline::after {
content: '';
position: absolute;
width: 6px;
background-color: #939597;
top: 0;
bottom: 0;
left: 50%;
margin-left: -3px;
}
/* Container around content */
.timeline {
position: relative;
background-color: inherit;
width: 50%;
}
/* The circles on the timeline */
.timeline::after {
content: '';
position: absolute;
width: 25px;
height: 25px;
right: -13px;
background-color: #939597;
border: 5px solid #F5DF4D;
top: 15px;
border-radius: 50%;
z-index: 1;
}
/* Place the container to the left */
.left {
padding: 0px 40px 20px 0px;
left: 0;
}
/* Place the container to the right */
.right {
padding: 0px 0px 20px 40px;
left: 50%;
}
/* Add arrows to the left container (pointing right) */
.left::before {
content: " ";
position: absolute;
top: 18px;
z-index: 1;
right: 30px;
border: medium solid white;
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent white;
}
/* Add arrows to the right container (pointing left) */
.right::before {
content: " ";
position: absolute;
top: 18px;
z-index: 1;
left: 30px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Fix the circle for containers on the right side */
.right::after {
left: -12px;
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
.main-timeline::after {
left: 31px;
}
/* Full-width containers */
.timeline {
width: 100%;
padding-left: 70px;
padding-right: 25px;
}
/* Make sure that all arrows are pointing leftwards */
.timeline::before {
left: 60px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Make sure all circles are at the same spot */
.left::after,
.right::after {
left: 18px;
}
.left::before {
right: auto;
}
/* Make all right containers behave like the left ones */
.right {
left: 0%;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light shadow-0">
<!-- Container wrapper -->
<div class="container-fluid">
<!-- Toggle button -->
<button class="navbar-toggler" type="button" data-mdb-toggle="collapse"
data-mdb-target="#navbarRightAlignExample" aria-controls="navbarRightAlignExample" aria-expanded="false"
aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<!-- Collapsible wrapper -->
<div class="collapse navbar-collapse" id="navbarRightAlignExample">
<!-- Left links -->
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item p-4">
<a class="text-dark" href="index.html">Home</a>
</li>
<li class="nav-item p-4">
<a class="text-purple-400" aria-current="page" href="about.html">About Me</a>
</li>
<li class="nav-item p-4">
<a class="text-dark" href="skills.html">Skills</a>
</li>
<li class="nav-item p-4">
<a class="text-dark" href="contact.html">Contact</a>
</li>
</ul>
<!-- Left links -->
</div>
<!-- Collapsible wrapper -->
</div>
<!-- Container wrapper -->
</nav>
<div class="container">
<div class="h-75">
<!-- Content -->
<div class="section">
<div class="row">
<div class="col-xl-6">
<!-- Left Section -->
<img class="w-100 py-xl-5 text-right" src="./img/about-us.png" alt="Programmer Coding" />
</div>
<div class="col-xl-6">
<!-- Right Section -->
<div class="d-flex align-items-lg-center">
<div style="padding-top: 20%">
<p class="fs-1 fw-bold">
LET ME INTRODUCE MYSELF
</p>
<p class="">
Hey There! 👋 <br/>
Myself Vivek Yaligar working as a software engineer at Aviso.<br/>
I am an enthusiastic web developer who loves to learn and grow 😎
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="fs-2 fw-bold">Education</div>
<section>
<div class="container py-5">
<div class="main-timeline">
<div class="timeline left">
<div class="card">
<div class="card-body p-4">
<h3>2020</h3>
<p class="mb-0">PES University, Bangalore</p>
<p class="mb-0">BTech in Computer Science and Engineering</p>
</div>
</div>
</div>
<div class="timeline right">
<div class="card">
<div class="card-body p-4">
<h3>2017</h3>
<p class="mb-0">JSS K H Kabbur Institute of Engineering, Dharwad</p>
<p class="mb-0">Diploma in Computer Science and Engineering</p>
</div>
</div>
</div>
<div class="timeline left">
<div class="card">
<div class="card-body p-4">
<h3>2014</h3>
<p class="mb-0">B.M.E.M.H.S, Dharwad</p>
<p class="mb-0">SSLC</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</body>
</html>