-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
707 lines (621 loc) · 24.7 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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="shortcut icon" href="./favicon.jpg" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<!-- AOS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" />
<!-- Glidejs -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/css/glide.core.css" />
<!-- Custom StyleSheet -->
<link rel="stylesheet" href="styles.css" />
<style>
.inspiringquotes {
padding: 40px;
font-size: 20px;
text-align: center;
}
</style>
<style>
#clock {
color: #8342F9;
}
button {
background-color: #8342F9;
border: none;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.notification {
background-color: yellow;
text-align: center;
color: black;
padding: 10px;
}
.notification span {
color: green;
}
</style>
<script src="https://smtpjs.com/v3/smtp.js">
</script>
<script>
const now = new Date();
const hour = now.getHours();
let greet;
if (hour >= 6 && hour < 12) {
greet = "Good morning";
} else if (hour >= 12 && hour < 17) {
greet = "Good afternoon";
} else if (hour >= 17 && hour < 24) {
greet = "Good evening";
} else {
greet = "Respected";
}
document.getElementById("greets").textContent = greet;
</script>
<script>
function sendEmail() {
Email.send({
Host: "smtp.gmail.com",
Username: "avi.bawge9@gmail.com",
Password: "password",
To: 'avi.bawge9@gmail.com',
From: document.getElementById("email").value,
Subject: "The Messages",
Body: "New Contact Form Enquiry"
}).then(
message => alert(message)
);
}
</script>
<script>
const myTimeout = () => (setTimeout(newspeech, 1000));
function newspeech() {
var msg = new SpeechSynthesisUtterance();
msg.text = "Hello, my name is Avinash Bawaagee. I am a web developer";
window.speechSynthesis.speak(msg);
}
// window.onload = newspeech;
myTimeout();
</script>
<title>Portfolio Website</title>
</head>
<body onload="timeCount();">
<a>
<!-- <div class="notification"> Serving Notice Period Last Working day @Linkfields: <span> <u>12 Sept 2023 !!!</u>
</span>
</div> -->
<!-- Header -->
<header id="home" class="header">
<!-- Navigation -->
<nav class="nav">
<div class="navigation container">
<div class="logo">
<h1> <span class="logo-text">AB Developer</span></h1>
</div>
<div class="menu">
<div class="top-nav">
<div class="logo">
<h1>AB Developer<span>.</span></h1>
</div>
<div class="close">
<i class="fas fa-times"></i>
</div>
</div>
<ul class="nav-list">
<li class="nav-item">
<a href="#home" class="nav-link scroll-link">Home</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link scroll-link">About</a>
</li>
<li class="nav-item">
<a href="#services" class="nav-link scroll-link">Services</a>
</li>
<li class="nav-item">
<a href="#skills" class="nav-link scroll-link">Skills</a>
</li>
<li class="nav-item">
<a href="#teams" class="nav-link scroll-link">My Projects</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link scroll-link">Contact us</a>
</li>
</ul>
</div>
<div class="hamburger">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<!-- Hero -->
<div class="hero">
<h3>Hello, my name is</h3>
<h1>Avinash Bawage</h1>
<h4>And I'm a <span id="type1"></span></h4>
<a href="https://drive.google.com/file/d/1VmuOUSJU7ktLe5FLEhQfqUxO3oHJUNSr/view?usp=sharing">Download Resume</a>
</div>
<img class="banner" src="./bg.png" alt="" />
<div class="icons">
<span><a href="https://github.com/Avinashbawage" target="_blank"> <i class="fab fa-github"></i> </a> </span>
<span><a href="https://www.linkedin.com/in/avinash-b-99ba58200/" target="_blank"><i
class="fab fa-linkedin-in"></i></a></span>
<span> <a href="https://twitter.com/AvinashBawge"><i class="fab fa-twitter"></i></a></span>
<span><a> <i class="fab fa-facebook-f"></i> </a> </span>
<span> <a> <i class="fab fa-instagram"></i> </a> </span>
</div>
</header>
<!-- Main -->
<section class="section about" id="about">
<div class="title">
<h1>About me</h1>
</div>
<div class="about-center container">
<div class="left" data-aos="fade-right" data-aos-duration="2000">
<img src="./profile1.jpg" alt="" />
</div>
<div class="right" data-aos="fade-left" data-aos-duration="2000">
<h1>I'm Avinash Bawage a <span id="type2"></span></h1>
<p>
Hi <span id="greets"> </span> Sir/Mam, I am Avinash Bawage. I am a web App Developer and Digital
Marketer(FreeLancing). 2+ year Experience
in web Development From <b> </b> <b> <span id="dates"></span> </b> <span id="times"> </span> <span
id="clock"></span> . Skills I Know is html, Css,
Javascript, Bootstrap, React Js (Front End web Developer),Nodejs (Backend) and Database (MySQL)
</p>
<a href="https://drive.google.com/file/d/1VmuOUSJU7ktLe5FLEhQfqUxO3oHJUNSr/view?usp=sharing"
class="btn">Download CV</a>
</div>
</div>
</section>
<!-- Services -->
<section class="section theme" id="services">
<div class="title">
<h1>My Services</h1>
</div>
<div class="services-center container">
<div class="service" data-aos="fade-down" data-aos-duration="2000">
<span><i class="fab fa-accusoft"></i></span>
<h2>Web Design</h2>
<p>
A website is a collection of web pages and related content that is identified by a common domain name and
published on at least one web server.
</p>
</div>
<div class="service" data-aos="fade-up" data-aos-duration="2000">
<span> <i class="fas fa-blender-phone"></i> </span>
<h2>Mobile App Design</h2>
<p>
A mobile application, also referred to as a mobile app or simply an app, is a computer program or software
application designed to run on a mobile device such as a phone, tablet, or watch.
</p>
</div>
<div class="service" data-aos="fade-down" data-aos-duration="2000">
<span> <i class="fas fa-chart-line"></i></span>
<h2>Digital Marketing</h2>
<p>
Digital Marketing refers to advertising delivered through digital channels such as search engines, websites,
social media, email, and mobile apps. Using these online media.
</p>
</div>
</div>
</section>
<!-- Skills -->
<section class="section skills" id="skills">
<div class="title">
<h1>My Skills</h1>
</div>
<div class="skills-center container">
<div class="skills-left" data-aos="fade-right" data-aos-duration="2000">
<div class="skills-box">
<h4>HTML5</h4>
<div class="skills-ilt">
<div class="skills-bar html"></div>
<span>95%</span>
</div>
</div>
<div class="skills-box">
<h4>CSS</h4>
<div class="skills-ilt">
<div class="skills-bar css"></div>
<span>85%</span>
</div>
</div>
<div class="skills-box">
<h4>JavaScript</h4>
<div class="skills-ilt">
<div class="skills-bar javascript"></div>
<span>90%</span>
</div>
</div>
<div class="skills-box">
<h4>Bootstrap</h4>
<div class="skills-ilt">
<div class="skills-bar javascript"></div>
<span>90%</span>
</div>
</div>
<div class="skills-box">
<h4>React Js and Redux </h4>
<div class="skills-ilt">
<div class="skills-bar css"></div>
<span>85%</span>
</div>
</div>
</div>
<div class="right" data-aos="fade-left" data-aos-duration="2000">
<h3>My creative skills and experience</h3>
<p>
Hi Sir, I am Avinash. I am Web App Developer and Digital Marketer. I am Good in Creating web app, website with Boostrap.
Skills I Know html,css,Javascript,Bootstrap,React js, Node Js and MySQL.
</p>
<a href="https://drive.google.com/file/d/1VmuOUSJU7ktLe5FLEhQfqUxO3oHJUNSr/view?usp=sharing" class="btn">Read
more</a>
</div>
</div>
</section>
<!-- Teams -->
<section class="section theme" id="teams">
<div class="title">
<h1>My Projects</h1>
</div>
<div class="teams-center container">
<div class="glide">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./unitconversion.PNG" alt="" />
</div>
<h3><strong> Weight Conversion website </strong></h3>
<p>
This website is Made with html,css and JavaScript. It will helps to Convert weight Conversion. Where
a
Person can Enter Number in Pounds. It will show the Results in Grams, Kgs and Ounce
<br />
<br />
<a style="color: aliceblue;"
href="https://avinashbt.github.io/Weight-Conversion-website-or-App/" class="btn"
target="_blank"> Click Here </a>
</p>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./mathwebsite.PNG" alt="" />
</div>
<h3><strong> Math Website (html+css) </strong></h3>
<p>
This is a Simple website which is Made with html and CSS. It is Education website. This website is
Online Tutorial website.
<br />
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/SingleWebsite/" class="btn"
target="_blank">
Click Here </a>
</p>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./stunninglandingpage.PNG" alt="" />
</div>
<h3><strong> Stunning landing Page website (html+css) </strong></h3>
<p>
This is a Simple website which is Made with html and CSS.
<br />
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/Stunning_landing_page/"
class="btn" target="_blank">
Click Here </a>
</p>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./calculator.PNG" alt="" />
</div>
<h3> Calculator (html,css & React js) </h3>
<p>
This a New Calculator. It is Made with html,css and React js.where you can Add, Substract, Multiply
and Divide the Number.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/caltors/" class="btn"
target="_blank"> Click here
</a>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="wordcount1.PNG" alt="" />
</div>
<h3><strong> Word Count Tool (Bootstrap + React Js) </strong></h3>
<p>
This is New Word Count Tool. It used to count the No. of Words, Characters, Time to Read, Convert
all
Text to Capital, Lowercase and Clear.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/wordcount/" class="btn"
target="_blank"> Click
here </a>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./educationwebsite.PNG" alt="" />
</div>
<h3> Education Website (html+css+Js) </h3>
<p>
This is a Education Website made with html+css+Js. Where It Include Multiple Pages -
Home,About,Conctact us.
It is Responsive Website. It is Best viewed in All Devices - Desktop,Tablet and Mobiles.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/Html-css-Js-Website/" class="btn"
target="_blank"> Click here </a>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="edutech.PNG" alt="" />
</div>
<h3> E-Courses Website(Bootstrap) </h3>
<p>
This a E-Course website which is Made with Bootstrape. It is Responsive Website. It is Best viewed
in
All Devices - Desktop,Tablet and Mobiles.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/Bootstrap.Edn.website/" class="btn"
target="_blank"> Click here </a>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./kafeneproject.PNG" alt="" />
</div>
<h3> kafeneproject </h3>
<p>
This Project consist of Signin and logout page.Order page, Product page and users page with filter
functionality and search functionality.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/Bootstrap.Edn.website/" class="btn"
target="_blank"> Click here </a>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./movies.PNG" alt="" />
</div>
<h3> Movie React Js App </h3>
<p>
This is Movie App with Search functionality.Api used.useState and useEffect used.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/Bootstrap.Edn.website/" class="btn"
target="_blank"> Click here </a>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./adminpanel.PNG" alt="" />
</div>
<h3> Basic Admin Panel </h3>
<p>
This is Basic Admin Panel with search functionality.On Click Details on rigth side bar.Api is used.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/Bootstrap.Edn.website/"
target="_blank" class="btn"> Click here </a>
</div>
</li>
<li class="glide__slide">
<div class="team">
<div class="img-cover">
<img src="./texttospeech.PNG" alt="" />
</div>
<h3> Text to Speech </h3>
<p>
This is a Text to Speech tool.
</p>
<br />
<a style="color: aliceblue;" href="https://avinashbt.github.io/Bootstrap.Edn.website/" class="btn"
target="_blank"> Click here </a>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section>
<div class="inspiringquotes">
<div>
“We all need people who will give us feedback. That’s how we improve.”
</div>
<div>
― Bill Gates
</div>
</div>
</section>
<!-- Contact -->
<section class="section contact" id="contact">
<div class="title">
<h1>Contact me</h1>
</div>
<div class="contact-center container">
<div class="left" data-aos="fade-down-right" data-aos-duration="2000">
<h2>Get in Touch</h2>
<p>
If you have an idea or if you want to collab and work on some project. I'd be happy to know and work. Let's
get in touch. Let's Build something cool together.
</p>
<div>
<span class="icon"><i class="fas fa-user"></i></span>
<span class="content">
<h3>Name</h3>
<span> Avinash Bawge </span>
</span>
</div>
<div>
<span class="icon"><i class="fas fa-map-marker-alt"></i></span>
<span class="content">
<h3>Address</h3>
<span> Hyderabad, Telangana, India </span>
</span>
</div>
<div>
<span class="icon"><i class="fas fa-envelope"></i></span>
<span class="content">
<h3>Email</h3>
<span>avi.bawge9@gmail.com</span>
</span>
</div>
</div>
<div class="right" data-aos="fade-up-left" data-aos-duration="2000">
<!-- <form onsubmit="submitForm(event)" class="form" id="contactForm"> -->
<form class="form" method="post" id="frmContact">
<h2>Message me</h2>
<div>
<input type="text" name="fullname" id="fullname" placeholder="Name" required />
<input type="email" name="email" id="email" placeholder="Email" required />
</div>
<input type="text" name="subject" id="subject" placeholder="Subject" /> <!-- Fix the input type here -->
<textarea cols="10" rows="10" name="message" id="message" placeholder="Message"></textarea>
<!-- Use id "description" -->
<button type="submit" name="submit">Submit</button>
</form>
</div>
</div>
</section>
<div class="projects">
</div>
<footer>
<p>Created By <span>AB Developer</span> | © <span id="yearid"> </span> All rights reserved.</p>
</footer>
<!-- AOS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<!-- Typeit -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/typeit/7.0.4/typeit.min.js"></script>
<!-- GSAP -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/gsap.min.js"></script>
<!-- Glidejs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/glide.min.js"></script>
<!-- Custom Script -->
<script>
const d = new Date();
let years = d.getFullYear();
document.getElementById("yearid").innerHTML = years;
const mydetails = [
{
id: 1,
title: "card1",
image: "profile.jpg"
}
]
function timeCount() {
// var today = new Date();
// var day = today.getDate();
// var month = today.getMonth() + 1;
// var year = today.getFullYear();
// var hour = today.getHours();
// if (hour < 10) hour = "0" + hour;
// var minute = today.getMinutes();
// if (minute < 10) minute = "0" + minute;
// var second = today.getSeconds();
// if (second < 10) second = "0" + second;
// document.getElementById("clock").innerHTML =
// day + "/" + month + "/" + year + " " + hour + ":" + minute + ":" + second;
// document.getElementById("clock").innerHTML =
// ` <b>May 2021 to ${day}/ ${month}/ ${year} Till Now ${hour} ${minute} ${second} </b> `
setTimeout("timeCount()", 1000);
}
function getDateDifference(startDate, todaysdate) {
const start = new Date(startDate);
const end = new Date(todaysdate);
const diff = end.getTime() - start.getTime();
const years = Math.floor(diff / (1000 * 60 * 60 * 24 * 365));
const months = Math.floor((diff % (1000 * 60 * 60 * 24 * 365)) / (1000 * 60 * 60 * 24 * 30));
const days = Math.floor((diff % (1000 * 60 * 60 * 24 * 30)) / (1000 * 60 * 60 * 24));
return { years, months, days };
}
let currentDate = new Date();
// Gets current year, month and day
let year = currentDate.getFullYear();
let month = currentDate.getMonth() + 1;
let day = currentDate.getDate();
let todaysdate = year + "-" + month + "-" + day
let todaysdates = day + "-" + month + "-" + year
var today = new Date();
var hours = today.getHours();
if (hours < 10) hours = "0" + hours;
var minutes = today.getMinutes();
if (minutes < 10) minutes = "0" + minutes;
var seconds = today.getSeconds();
if (seconds < 10) seconds = "0" + seconds;
// console.log("first", todaysdate)
// Example usage:
const startDate = "2021-03-28";
// const todaysdate = "2023-02-15";
const dateDifference = getDateDifference(startDate, todaysdate);
console.log("Experience", dateDifference); // Output: { years: 2, months: 1, days: 14 }
document.getElementById("clock").innerHTML =
` <b>28-May-2021 to ${todaysdates} </b> Total Experience :${dateDifference.years}years, ${dateDifference.months} months , ${dateDifference.days}days `
setTimeout("getDateDifference()", 1000);
</script>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.22.1/firebase-app.js";
import { getDatabase, ref, set, get, child } from "https://www.gstatic.com/firebasejs/9.22.1/firebase-database.js";
// Paste the code from Firebase
const firebaseConfig = {
apiKey: "AIzaSyDPqUppaM_cINaQPUjk79_oNWHvses5mY0",
authDomain: "webapp-5ff55.firebaseapp.com",
projectId: "webapp-5ff55",
storageBucket: "webapp-5ff55.appspot.com",
messagingSenderId: "645643836728",
appId: "1:645643836728:web:3797fc8ee6a64023daf5cd",
measurementId: "G-H5PJRHC1BQ"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
// Get a reference to the database service
const db = getDatabase(app);
document.getElementById('frmContact').addEventListener('submit', function (e) {
e.preventDefault();
set(ref(db, 'users/' + Math.random().toString(36).slice(2, 7)), {
name: document.getElementById('fullname').value,
email: document.getElementById('email').value,
subject: document.getElementById('subject').value,
message: document.getElementById('message').value
});
alert('Your form is submitted');
document.getElementById('frmContact').reset();
});
</script>
<script src="index.js">
</script>
</body>
</html>