-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
414 lines (342 loc) · 20.9 KB
/
index.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
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name ="viewport"content="width=device-width, initial-scale=1">
<meta name="description" content="I'm Dnyaneshwar Sakhare. I'm currently pursuing B Tech in Computer Science Engineering. Looking for software developer/engineer role to showcase my skills & work">
<meta name="theme-color" content="#2196f3" />
<title>Portfolio</title>
<link rel="shortcut icon" type="image/ico" href="images&icons/icon_1.ico">
<link rel="icon" type="image/ico" href="images&icons/icon.ico">
<link href="https://fonts.googleapis.com/css2?family=Oswald&family=Raleway:ital,wght@0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
<link id="theme" rel="stylesheet" href="light-theme.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js" integrity="sha512-CEiA+78TpP9KAIPzqBvxUv8hy41jyI3f2uHi7DGp/Y/Ka973qgSdybNegWFciqh6GrN2UePx2KkflnQUbUhNIA==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.js"></script>
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css">
<link rel="stylesheet" type="text/css" href="loader.css">
<style type="text/css">
</style>
<script>
//adding preloader css animation
var count=0;
var counter = setInterval(() => {
if (count < 101) {
$('.count').text(count + '%');
$('.loader').css('width',count + '%');
count ++
}else{
clearInterval(counter)
}
});
$(document).ready(function(){
////start// For automatically switching between dark & light theme on basis of system color scheme////
const themeStylesheet = document.getElementById('theme');
const themeToggle = document.getElementById('theme-toggle');
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
themeStylesheet.href = 'dark-theme.css';
themeToggle.innerText = 'Light';
} else {
themeStylesheet.href = 'light-theme.css';
themeToggle.innerText = 'Dark';
}
///End////
});
//for nightmode/lightmode switching....
document.addEventListener('DOMContentLoaded', () => {
const themeStylesheet = document.getElementById('theme');
const themeToggle = document.getElementById('theme-toggle');
themeToggle.addEventListener('click', () => {
// if it's light -> go dark
if(themeStylesheet.href.includes('light')){
themeStylesheet.href = 'dark-theme.css';
themeToggle.innerText = 'Light';
} else {
// if it's dark -> go light
themeStylesheet.href = 'light-theme.css';
themeToggle.innerText = 'Dark';
}
})
//Get the button
var mybutton = document.getElementById("scrolltotop");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
$('#scrolltotop').on('click', ()=>{
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
})
})
document.addEventListener('DOMContentLoaded', () => {
//for nav links for mobile....
const linefornav = document.getElementById("linefornav");
const navlinks = document.getElementById("nav-links");
const links = document.getElementById("nav-links li");
const line1 = document.getElementById("line1");
linefornav.addEventListener('click', () => {
navlinks.classList.toggle("open");
linefornav.classList.toggle("cross");
});
$('#nav-links li a').on('click' , ()=>{
$('#nav-links').toggleClass("open");
$(".linefornav").toggleClass("cross");
});
});
//adding animation effect to the page
$(document).ready(function(){
$('.heading-part1').waypoint(function(direction){
$('.heading-part1').addClass('animate__fadeInDown')
},{offset:'100%'})
});
$(document).ready(function(){
$('.heading-part2').waypoint(function(direction){
$('.heading-part2').addClass('animate__fadeInUp')
},{offset:'100%'})
});
$(document).ready(function(){
$('.knowmore').waypoint(function(direction){
$('.knowmore').addClass('animate__fadeIn')
},{offset:'100%'})
});
$(document).ready(function(){
$('.about-part1').waypoint((direction)=>{
$('.about-part1').addClass('animate__fadeInRightBig')
},{offset:'50%'})
});
$(document).ready(function(){
$('.about-part2').waypoint(function(direction){
$('.about-part2').addClass('animate__fadeInLeftBig')
},{offset:'50%'})
});
$(document).ready(function(){
$('.tl-part1').waypoint(function(direction){
$('.tl-part1').addClass('animate__fadeInLeft')
},{offset:'50%'})
});
$(document).ready(function(){
$('.tl-partp').waypoint(function(direction){
$('.tl-partp').addClass('animate__fadeInUp')
},{offset:'50%'})
});
$(document).ready(function(){
$('.tl-part2').waypoint(function(direction){
$('.tl-part2').addClass('animate__fadeInRight')
},{offset:'50%'})
});
$(document).ready(function(){
$('.skills-part1').waypoint(function(direction){
$('.skills-part1').addClass('animate__fadeInUp')
},{offset:'50%'})
});
$(document).ready(function(){
$('.skills-part2').waypoint(function(direction){
$('.skills-part2').addClass('animate__fadeInUp')
},{offset:'50%'})
});
$(document).ready(function(){
$('.fw-part1').waypoint(function(direction){
$('.fw-part1').addClass('animate__fadeInUp')
},{offset:'50%'})
});
$(document).ready(function(){
$('.fw-part2').waypoint(function(direction){
$('.fw-part2').addClass('animate__fadeInUp')
},{offset:'50%'})
});
$(document).ready(function(){
$('.port-part1').waypoint(function(direction){
$('.port-part1').addClass('animate__fadeInUp')
},{offset:'50%'})
});
$(document).ready(function(){
$('.port-part2').waypoint(function(direction){
$('.port-part2').addClass('animate__fadeInUp')
},{offset:'50%'})
});
$(document).ready(function(){
$('.cont-part1').waypoint(function(direction){
$('.cont-part1').addClass('animate__fadeInLeftBig')
},{offset:'60%'})
});
$(document).ready(function(){
$('.cont-part2').waypoint(function(direction){
$('.cont-part2').addClass('animate__fadeInRightBig')
},{offset:'60%'})
});
$(document).ready(function(){
$('.cv-part1').waypoint(function(direction){
$('.cv-part1').addClass('animate__fadeInDown')
},{offset:'50%'})
});
$(document).ready(function(){
$('.sm-part1').waypoint(function(direction){
$('.sm-part1').addClass('animate__bounceIn')
},{offset:'80%'})
});
$(document).ready(function(){
$('.sm-part2').waypoint(function(direction){
$('.sm-part2').addClass('animate__fadeInUp')
},{offset:'90%'})
});
</script>
<style>
</style>
</head>
<body id="top">
<!-- ********HEADER***************-->
<div class="wrapper">
<section>
<div class="loader"></div>
<div class="count"></div>
</section>
</div>
<nav>
<div class="linefornav" id="linefornav">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-links" id="nav-links">
<li><p>Mode : <button id="theme-toggle">Dark</button></p></li>
<li><h2><a id="logoicon" href="#top"><img style="width: 60px;height: 60px;" src="images&icons/icon.ico" alt="Dnyaneshwar Sakhare Logo"></a></h2></li>
<li><a href="#top"> Home</a></li>
<li><a href="#about"> About Me</a></li>
<li><a href="#Skills"> Skills</a></li>
<li><a href="#portfolio"> Portfolio</a></li>
<li><a href="#contact"> Contact Me</a></li>
</ul>
</nav>
<!--</div>-->
<!-- ********HOMEPAGE***************-->
<div id="hero">
<div class="background-image"></div>
<h1 class="heading-part1 animate__animated">Hello, I'm a Software Developer</h1>
<h3 class="heading-part2 animate__animated">I love playing with Html, Css and Javascript with programming knowledge of C, C++, Java & more.</h3>
<a href="#about" style="font-family: 'Josefin Sans', sans-serif;" class="btn knowmore animate__animated ">Know More</a>
<p id="scrolltotop" title="Go to top">Scroll to Top</p>
</div>
<!-- ********About***************-->
<div id="about" class="about">
<h3 class="title">About Me</h3>
<div id="two-cols">
<div class="about-image about-part1 animate__animated"><img style="border-radius: 50%;" src="images&icons/DnyaneshwarSakhare.jpg" alt="Dnyaneshwar sakhare image"></div>
<div class="about-bio about-part2 animate__animated">
<p>
I'm Dnyaneshwar Sakhare. Working as a Software Developer. I have good understanding of Full Stack Web Developement. Also hands on knowledge on MERN Stack Developement. Currently exploring Core Java, Spring boot, struts framework. I've done certification course on <b>Software Development Life Cycle</b> and <b>Digital Marketing</b>. Other than this i really like to developing games using <b>Unity 3D</b>.
</p>
</div>
<p> </p>
</div><hr>
</div>
<!------*******Educational Timeline********---------->
<p class="tl-partp animate__animated" style="text-align: center; font-size: 20px;font-family: 'Josefin Sans', sans-serif;">Education Timeline</p><hr>
<div class="timeline">
<div class="container left tl-part1 animate__animated">
<div class="content">
<h2>2017 - 2021</h2>
<h3>B.Tech CSE</h3>
<p><b>CPI : 7.43</b><br>Rajarambapu institute of technology ,Islmapur,Sangli.</p>
</div>
</div>
<div class="container right tl-part2 animate__animated">
<div class="content">
<h2>2016 - 2017</h2>
<h3>12th - HSC</h3>
<p><b>Percentage : 76.15%</b><br>Rajarshi shahu mahavidyalay, Latur.</p>
</div>
</div>
<div class="container left tl-part1 animate__animated">
<div class="content">
<h2>2014 - 2015</h2>
<h3>10th - SSC</h3>
<p><b>Percentage : 92.00%</b><br>Vidyavikas vidyalay, Latur.</p>
</div>
</div>
</div><hr>
<!-- ********Skills**************-->
<div id="Skills" class="Skills">
<h3 class="title">Skills</h3>
<p class="skills-part1 animate__animated" style="margin-bottom: 40px;">
Strong javascript skills and have experience with latest javascript frameworks like React js, Node js. I have good understanding of Data structures & Algorithms and Oop concepts with Java language.
</p><hr>
<ul class="grid skills-part2 animate__animated">
<li><i></i><h4 class="textskill">Front-End</h4><p>Interested in Developing UI with Html, Css & Javascript</p></li>
<li><i></i><h4 class="textskill">Back-End</h4><p>Worked with Databases (Sql & NoSql) and used Node.js as a backend</p></li>
<li><i></i><h4 class="textskill">SW-Dev</h4><p>I know SDLC, Agile SD, Lean SD Concepts very well</p></li>
<li><i></i><h4 class="textskill">Game-Dev</h4><p>Learning to develope games using Unity 3D & C#</p></li>
</ul>
</div><hr>
<!--Frameworks worked with-->
<div class="framework">
<p style=" font-family: 'Josefin Sans', sans-serif;" class="fw-part1 animate__animated">Some technologies i have experience working with :</p><hr>
<div class="fwimg fw-part2 animate__animated">
<img class="fwf" src="framework png's/ht5.png" alt="html">
<img class="fwf" src="framework png's/css.png" alt="css">
<img class="fwf" src="data:image/png;base64,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" alt="react">
<img class="fwf" src="framework png's/node.png" alt="node js">
<img class="fwf" src="framework png's/express.png" alt="express js">
<img class="fwf" src="framework png's/mongodb.png" alt="MongoDB">
<img class="fwf" src="framework png's/js.png" alt="Javascript">
<img class="fwf" src="framework png's/unity.png" alt="unity3D">
<img class="fwf" src="framework png's/jquery.png" alt="jQuery">
<img class="fwf" src="framework png's/vs.png" alt="vs code">
<img class="fwf" src="framework png's/git.png" alt="github">
</div>
</div><hr>
<!-- *********Portfolio**************-->
<div id="portfolio" class="portfolio">
<h3 class="title">Portfolio</h3>
<p class="port-part1 animate__animated">
Take a look at my Featured works.
</p>
<hr>
<ul style="justify-content: center;" class="grid port-part2 animate__animated">
<li class="large" style="background-image: url('images&icons/about.jpg');"><p id="po">Url-Shortner<br>its convert big complex url into short url</p><p id="lo">Url-Shortner<br>An URL shortener reduces the length of your URL, in order to make the address something that's easier to remember and track. So its very easy to share url after shortening.
</p><a href="#about" class="btn" id="btnopen">Open</a></li>
<li class="large" style="background-image: url('images&icons/bgr.jpg');"><p id="po">Globe-3D Three.js<br>Globe 3D with Covid-19 Cases</p><p id="lo">Globe-3D Three.js<br>orem fa rfv rve rv vwe rv w er vw er v wr v wr v wr vw r v wer vwe rv e rv rg we r wer r v rb rtb rtb wrt b rt b t b</p><a id="btnopen" href="#about" class="btn">Open</a></li>
<li class="large" style="background-image: url('images&icons/bgr.jpg');"><p id="po">Url-Shortner<br>its convert big url into short url</p><p id="lo">Url-Shortner<br>orem fa rfv rve rv vwe rv w er vw er v wr v wr v wr vw r v wer vwe rv e rv rg we r wer r v rb rtb rtb wrt b rt b t b</p><a href="#about" class="btn" id="btnopen">Open</a></li>
<li class="large" style="background-image: url('images&icons/about.jpg');"><p id="po">Url-Shortner<br>its convert big url into short url</p><p id="lo">Url-Shortner<br>orem fa rfv rve rv vwe rv w er vw er v wr v wr v wr vw r v wer vwe rv e rv rg we r wer r v rb rtb rtb wrt b rt b t b</p><a href="#about" class="btn" id="btnopen">Open</a></li>
</ul>
</div>
<hr>
<!-- *********CONTACT**************-->
<div><h3 class="title">Contact Me</h3></div><hr>
<div id="contact">
<ul class="grid">
<li style="font-family: 'Josefin Sans', sans-serif;" class="cont-part1 animate__animated"><i style="font-size: 30px;color: #2196f3;" class="fa fa-location-arrow" aria-hidden="true"></i><br><br><p>Barsh road, MIDC<br>
Latur, 413512 MH<br>
India.</p></li>
<li class="cont-part2 animate__animated"><i style="font-size: 30px;color: #2196f3;" class="fa fa-envelope-open"></i><br><br><p style="font-family: 'Josefin Sans', sans-serif;">dnyaneshwarsakhare22@gmail.com</p></li>
</ul>
</div><hr>
<!-- *********FOOTER**************-->
<div class="cv-part1 animate__animated" style="text-align: center;">
<a href="Dnyaneshwar_Sakhare_CV.pdf" download="Dnyaneshwar_Sakhare-CV" target="_blank" class="btn cv-part1 animate__animated" style="font-family: 'Josefin Sans', sans-serif;" id="cv">Download CV</a>
</div>
<hr>
<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="dark" data-type="HORIZONTAL" data-vanity="dnyaneshwar-sakhare" data-version="v1"><a class="badge-base__link LI-simple-link" href="https://in.linkedin.com/in/dnyaneshwar-sakhare?trk=profile-badge">Dnyaneshwar Sakhare</a></div>
<!-- *********FOOTER**************-->
<footer id="social-media">
<ul class="sm-part1 animate__animated">
<li><a href="https://mobile.twitter.com/DnyaneshwarS22" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/dnyaneshwar_s22/" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://in.linkedin.com/in/dnyaneshwar-sakhare" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/Dnyaneshwarsakhare/" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="mailto:dnyaneshwarsakhare22@gmail.com?subject=Hello, I'm ...&body=I have a job for you...." target="_blank"><i class="far fa-envelope"></i></a></li>
</ul>
<p class="sm-part2 animate__animated">Thank you for visiting !</p>
<p class="sm-part2 animate__animated">“ Believe In Yourself ”</p>
<p class="sm-part2 animate__animated">Copyright © <script>document.write(new Date().getFullYear());</script> Made with <span style="color: red"class="heart">❤</span> by Dnyaneshwar Sakhare </p>
</footer>
</body>
</html>