-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
559 lines (530 loc) · 20.5 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
<!--Created by Santo Paul-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SKPGZ19MEC"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SKPGZ19MEC');
</script>
<title>Santo Paul</title>
<link rel="icon" type="image/x-icon" href="https://img.freepik.com/free-vector/letter-s-logo-business-finance-technology-logotype_126523-2735.jpg">
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<meta name="keywords" content="" />
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- //Meta tag Keywords -->
<!-- Custom-Files -->
<link rel="stylesheet" href="css/bootstrap.css"><!-- Bootstrap-Core-CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" /><!-- Style-CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css"><!-- Font-Awesome-Icons-CSS -->
<!-- //Custom-Files -->
<!-- Web-Fonts -->
<link href="//fonts.googleapis.com/css?family=Libre+Franklin:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<!-- //Web-Fonts -->
</head>
<body oncontextmenu="return false">
<div class="wrap" id="home">
<!-- header -->
<header>
<div class="container">
<div class="header d-lg-flex">
<div class="nav_w3ls mt-lg-3">
<nav>
<label for="drop" class="toggle mt-lg-0 mt-sm-1"><span class="fa fa-bars" aria-hidden="true"></span></label>
<input type="checkbox" id="drop" />
<ul class="menu">
<li class="active"><a href="index.html">Home</a></li>
<li class=""><a href="#about">About </a></li>
<!--<li class=""><a href="#services">Services </a></li>-->
<li class="">
<!-- First Tier Drop Down -->
<label for="drop-2" class="toggle">Dropdown <span class="fa fa-angle-down" aria-hidden="true"></span> </label>
<a href="#">Dropdown <span class="fa fa-angle-down" aria-hidden="true"></span></a>
<input type="checkbox" id="drop-2"/>
<ul class="inner-dropdown">
<li><a href="#skills">My Skills</a></li>
<li class=""><a href="#edu-exp">Education and Experience</a></li>
</ul>
</li>
<li class=""><a href="#projects">Projects</a></li>
<li class=""><a href="#contact">Contact Me</a></li>
</ul>
</nav>
</div>
<div class="social mt-lg-3 mt-1 ml-auto">
<ul>
<li class="mr-sm-3 mr-2 icons"><a href="#"><span class="fa fa-facebook" aria-hidden="true"></span></a></li>
<li class="mr-sm-3 mr-2 icons"><a href="#"><span class="fa fa-instagram" aria-hidden="true"></span></a></li>
<li class="mr-sm-3 mr-2 icons"><a href="#"><span class="fa fa-twitter" aria-hidden="true"></span></a></li>
<li class=" icons"><a href="#"><span class="fa fa-pinterest" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
</header>
<!-- //header -->
<!-- logo -->
<div class="container my-lg-4 mb-4">
<div class="logo text-center">
<h1><a href="index.html"><span class="fa fa-diamond"></span> Santo Paul</a></h1>
</div>
</div>
<!-- //logo -->
<!-- container -->
<div class="container">
<!-- main -->
<div class="main">
<!-- banner -->
<section class="banner">
<div class="col-md-12">
<div class="banner-info">
<h2 class="heading-banner text-capitalize">Hi. I'm <span>Web Developer.</span></h2>
<p class=" mt-3">I am passionate <span>about learning </span>and I try to learn as many things as I am able to. I write sometimes; when am bored. I code and look into people's code. Like I said, I try to learn as many things as possible. Google is my friend, he should be yours too.</p>
<p class=" mt-3">
<b>WARNING:</b>The site is under Maintenance<br>
<b>Author:</b> Santo Paul </p>
<a href="#about" class="banner-button btn mt-md-5 mt-3 scroll">Read More</a>
</div>
</div>
</section>
<!-- //banner -->
<!-- about us -->
<section class="banner-bottom" id="about">
<div class="inner-sec">
<div class="row middle-grids">
<div class="col-lg-7 advantage-grid-info">
<div class="advantage_left">
<h2 class="heading text-capitalize mb-4">About Me <span></span></h2>
<h4>I'm a Professional Web Developer </h4>
<p class="mb-4">Since beginning my journey as a full-stack web developer over 3 years, I've done remote work for agencies, consulted for startups, and collaborated with talented people to create digital products for both business and consumer use. I'm quietly confident, naturally curious, and perpetually working on improving my chops one design problem at a time.</p>
<a href="#" class="banner-button1 btn">Download Cv</a>
<a href="#contact" class="banner-button2 btn">Hire Me</a>
</div>
</div>
<div class="col-lg-5 advantage-grid-info1">
<div class="advantage_left1 mt-lg-0 mt-4">
<img src="images/about.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- //about us -->
<!-- services -->
<!--<section class="services" id="services" style="padding-bottom: 300px;">
<div class="inner-sec-layer">
<h3 class="heading text-capitalize mb-md-5 mb-4">Services <span></span></h3>
<div class="row middle-grids">
<div class="col-lg-4 col-md-6 service-in text-center card-container">
<div class="card card-flip" style="padding-top: 500px;">
<div class="card-body front card-block" style="z-index: 2; border-bottom: 0px; padding-bottom: 10px; padding-top: 0;">
<span class="card-img-top fa fa-desktop mb-4"></span>
<h5 class="card-title text-uppercase">Designing</h5>
<p class="card-text"> The process of planning and implementing the plan for designing a website in a way that is functional and offers a good user experience.</p>
<div class="back card-block">
<p>
<i>Santo Paul is typing...</i>
</p>
<a href="#" class="btn btn-outline-primary">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 service-in text-center mt-md-0 mt-4 card-container">
<div class="card card-flip">
<div class="card-body front card-block" style="z-index: 2;">
<span class="card-img-top fa fa-pencil-square-o mb-4"></span>
<h5 class="card-title text-uppercase">Developing</h5>
<p class="card-text">Web development is the work involved in developing a website for the Internet or an intranet. Websites can be of two types static and dynamic.</p>
<div class="back card-block">
<p>
<i>Santo Paul is typing...</i>
</p>
<a href="#" class="btn btn-outline-primary">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 service-in text-center mt-lg-0 mt-4 card-container">
<div class="card card-flip">
<div class="card-body front card-block" style="z-index: 2;">
<span class="card-img-top fa fa-window-restore mb-4"></span>
<h5 class="card-title text-uppercase">Responsive</h5>
<p class="card-text">The approach that design and development should respond to the user's behavior and environment based on screen, platform and orientation. </p>
<div class="back card-block">
<p>
<i>Santo Paul is typing...</i>
</p>
<a href="#" class="btn btn-outline-primary">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- //services -->
<!-- skills -->
<section class="skills" id="skills">
<div class="inner-sec">
<h3 class="heading text-capitalize mb-md-5 mb-4">My Skills <span></span></h3>
<div class="row middle-grids">
<div class="col-lg-6">
<div class="skills-left">
<p class="card-text mb-4">I like to code things from scratch, and enjoy bringing ideas to life in the browser. I value simple content structure, clean design patterns, and thoughtful interactions. </p>
<h5>Web Desiging - 90%</h5>
<p class="mb-4 bg clr-ninghty"></p>
<h5>Responsive Design - 85%</h5>
<p class="mb-4 bg clr-eighty-five"></p>
<h5>Mobile Apps - 70%</h5>
<p class="mb-4 bg clr-seventy"></p>
</div>
</div>
<div class="col-lg-6 mt-lg-0 mt-4">
<div class="row text-center">
<div class="col-lg-4 col-sm-4 col-6 count-num-txt mb-4">
<div class="number-w3three-info icon1">
<span class="fa fa-briefcase mb-sm-4 mb-2"></span>
<h5>10</h5>
<h6 class="pt-2">Experience</h6>
</div>
</div>
<div class="col-lg-4 col-sm-4 col-6 count-num-txt mb-4">
<div class="number-w3three-info icon2">
<span class="fa fa-clone mb-sm-4 mb-2"></span>
<h5>250+</h5>
<h6 class="pt-2">Projects</h6>
</div>
</div>
<div class="col-lg-4 col-sm-4 col-6 count-num-txt mb-4">
<div class="number-w3three-info icon3">
<span class="fa fa-trophy mb-sm-4 mb-2"></span>
<h5>150</h5>
<h6 class="pt-2">Awards</h6>
</div>
</div>
</div>
<p class="">I genuinely care about people, and love helping fellow designers work on their craft. </p>
</div>
</div>
</div>
</section>
<!-- //skills -->
<!-- Projects -->
<section class="projects" id="projects">
<div class="inner-sec">
<h3 class="heading text-capitalize mb-md-5 mb-4">projects <span></span></h3>
<h6 class="heading text-capitalize mb-md-5 mb-4">Here are a few past projects I've worked on. Want to see more? <a href="mailto:[email protected]" target="_blank" style="text-decoration: none;" >Email</a> </h6>
<div class="row news-grids text-center">
<div class="col-md-3 col-6 gal-img">
<a href="#gal1"><img src="images/p1.jpg" alt="news image" class="img-fluid"></a>
</div>
<div class="col-md-3 col-6 gal-img">
<a href="#gal1"><img src="images/p2.jpg" alt="news image" class="img-fluid"></a>
</div>
<div class="col-md-3 col-6 gal-img">
<a href="#gal1"><img src="images/p3.jpg" alt="news image" class="img-fluid"></a>
</div>
<div class="col-md-3 col-6 gal-img">
<a href="#gal1"><img src="images/p4.jpg" alt="news image" class="img-fluid"></a>
</div>
<div class="col-md-3 col-6 gal-img">
<a href="#gal5"><img src="images/p5.jpg" alt="news image" class="img-fluid"></a>
</div>
<div class="col-md-3 col-6 gal-img">
<a href="#gal5"><img src="images/p6.jpg" alt="news image" class="img-fluid"></a>
</div>
<div class="col-md-3 col-6 gal-img">
<a href="#gal5"><img src="images/p7.jpg" alt="news image" class="img-fluid"></a>
</div>
<div class="col-md-3 col-6 gal-img">
<a href="#gal5"><img src="images/p8.jpg" alt="news image" class="img-fluid"></a>
</div>
</div>
</div>
</section>
<!-- //Projects -->
<!-- tabs -->
<section class="edu-exp" id="edu-exp">
<div class="inner-sec">
<h3 class="heading text-capitalize mb-md-5 mb-4"> Life and Education <span></span></h3>
<div class="edu-exp-grids">
<div class="tab-main text-center">
<input id="tab1" type="radio" name="tabs" class="w3pvt-sm" checked>
<!--<label for="tab1"><span class="fa fa-graduation-cap" aria-hidden="true"></span> can type anything to act as button </label>-->
<!--<input id="tab2" type="radio" class="w3pvt-sm" name="tabs">
<label for="tab2"><span class="fa fa-briefcase" aria-hidden="true"></span> type anything</label>-->
<section id="content1">
<div class="row text-left">
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>Life Summary </h4><br>
<!--<h6>2005-2023</h6>-->
<p>I was born in 2005 to two loving parents. My father is <b>Rev.Dr Paul Varghese</b> who is a priest. My mother is <b>Julie Paul</b> who is a teacher. I'm also blessed with a cute and loving sister <b>Dr.Santy Paul</b> who is now pursuing her MBBS course, and her fiance <b>Mr.Reji JS</b> who is a Central Government Contractor.</p>
</div>
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>School Life</h4><br>
<!--<h6>dcd</h6>-->
<p>I have started my school life at St.Shanthal Senior Secondary School, where I have completed my Pre-KG, LKG, UKG, Class1 and Class2 studies. I have then transferred to New Vidya Vihar for Class3 and Class4. Then I joined NHSS Nellimoodu and studied from Class 5 to 10.</p>
</div>
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>HS Life</h4><br>
<!--<h6>- Arcu lorem ipsum- 2006</h6>-->
<p> HS life was awesome. I don't think more about that :) </p>
</div>
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>Hobbies</h4><br>
<!--<h6>- Arcu lorem ipsum- 2006</h6>-->
<p>
<ul>
<li>Coding</li>
<li>Cyber Security Analysing</li>
<li>Reading</li>
<li>Entertaining Myself </li>
<li>Do whatever I love</li>
</ul>
</p>
</div>
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>Small small achievements__</h4><br>
<!--<h6>- Arcu lorem ipsum- 2006</h6>-->
<p><script src="https://tryhackme.com/badge/1925371"></script></p>
</div>
</div>
</section>
<!--<section id="content2">
<div class="row text-left">
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>Front End Developer</h4>
<h6>- 2016-2018 at fringilla</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras lobortis mollis arcu, vel vulputate justo.</p>
</div>
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>Creative Designer</h4>
<h6> - 2014-2016 at adipiscing</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras lobortis mollis arcu, vel vulputate justo.</p>
</div>
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>UI/UX Designer</h4>
<h6> - 2010-2014 at consectetur</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras lobortis mollis arcu, vel vulputate justo.</p>
</div>
<div class="col-lg-6 inner-w3pvt-wrap">
<h4>Mobile App Developer</h4>
<h6> - 2010-2014 at consectetur</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras lobortis mollis arcu, vel vulputate justo.</p>
</div>
</div>
</section>-->
</div>
</div>
</div>
</section>
<!-- tabs -->
</div>
<!-- //main -->
<!-- contact -->
<section class="contact" id="contact">
<div class="inner-sec">
<h3 class="heading text-capitalize mb-4">Get In Touch <span></span></h3>
<form name="contact-form" class="contact-form" id="submit-form" action="">
<div class="row">
<div class="col-md-6 con-gd">
<div class="form-group">
<p>Name *</p>
<input type="text" class="form-control" id="name" placeholder="Enter Your Name" name="name" required="">
</div>
<div class="form-group">
<p>Email *</p>
<input type="email" class="form-control" id="email" placeholder="Enter Your Email Id" name="email" required="">
</div>
</div>
<div class="col-md-6 con-gd">
<div class="form-group">
<p>Send a Message *</p>
<textarea name="Message" class="form-control" placeholder="Enter Your Message" required=""></textarea>
</div>
</div>
</div>
<div class="form-group mb-0">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</form>
</div>
</section>
<!-- contact -->
</div>
<!-- //container -->
<!-- footer -->
<div class="container">
<footer class="footer-emp-w3ls">
<div class="copy-right-top border-top">
<p class="copy-right text-center text-white py-4">©
<script>
var date = new Date()
document.write(date.getFullYear())
</script>. All Rights Reserved </p>
</div>
</footer>
</div>
<!-- //footer -->
<!-- move top -->
<div class="move-top text-right">
<a href="#home" class="move-top">
<span class="fa fa-angle-up mb-3" aria-hidden="true"></span>
</a>
</div>
<!-- move top -->
<!--</div>
<div id="progress">
<span id="progress-value">🠕</span>
</div>-->
<style>
html{
scroll-behavior: smooth;
}
#progress{
position: fixed;
bottom: 20px;
right: 10px;
height: 70px;
width: 70px;
display: none;
place-items: center;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
cursor: pointer;
}
#progress-value{
display: block;
height: calc(100% - 15px);
width: calc(100% - 15px);
background-color: #ffffff;
border-radius: 50%;
display: grid;
place-items: center;
font-size: 35px;
color: #001a2e;
}
/* .card-block .btn-outline-primary {
width: 100%;
border-top-left-radius: 0;
border-top-right-radius: 0;
bottom: 0;
left: 0;
position: absolute;
}
.card {
margin: 20px 0;
}*/
/* Flip Cards CSS */
/*.card-container {
perspective: 700px;
}
.card-flip {
position: relative;
width: 100%;
transform-style: preserve-3d;
height: auto;
transition: all 0.5s ease-out;
background: white;
border: none;
}
.card-flip div {
backface-visibility: hidden;
transform-style: preserve-3d;
height: 100%;
width: 100%;
border: none;
}
.card-flip .front {
position: relative;
z-index: 1;
}
.card-flip .back {
position: relative;
z-index: 0;
transform: rotateY(-180deg);
}
.card-container:hover .card-flip {
transform: rotateY(180deg);
}*/
</style>
<script>
let calcScrollValue = () => {
let scrollProgress = document.getElementById("progress");
let progressValue = document.getElementById("progress-value");
let pos = document.documentElement.scrollTop;
let calcHeight = document.documentElement.scrollHeight -
document.documentElement.clientHeight;
let scrollValue = Math.round((pos * 100)/ calcHeight);
if (pos > 100) {
scrollProgress.style.display = "grid";
} else {
scrollProgress.style.display = "none";
}
scrollProgress.addEventListener("click", () => {
document.documentElement.scrollTop = 0;
});
scrollProgress.style.background = `conic-gradient
(#03cc65 ${scrollValue}%, #d7d7d7 ${scrollValue}%)`;
};
window.onscroll = calcScrollValue;
window.onload = calcScrollValue;
</script>
<script>
$(document).ready(function() {
var front = document.getElementsByClassName("front");
var back = document.getElementsByClassName("back");
var highest = 0;
var absoluteSide = "";
for (var i = 0; i < front.length; i++) {
if (front[i].offsetHeight > back[i].offsetHeight) {
if (front[i].offsetHeight > highest) {
highest = front[i].offsetHeight;
absoluteSide = ".front";
}
} else if (back[i].offsetHeight > highest) {
highest = back[i].offsetHeight;
absoluteSide = ".back";
}
}
$(".front").css("height", highest);
$(".back").css("height", highest);
$(absoluteSide).css("position", "absolute");
});
</script>
<chat-bot platform_id="2f736ffa-1651-4ee1-8221-fd8671a89752" user_id="92ad86d4-b9c6-4e40-8242-84227da7e528" chatbot_id="75235313-948d-4ab9-859e-b8b2d1d4e4fe"><a href="https://www.chatsimple.ai/?utm_source=widget&utm_medium=referral">[chatbot]</a></chat-bot><script src="https://chatsimple-widget.s3.us-east-2.amazonaws.com/chat-bot-loader.js" defer>
</script>
<script>
$("#submit-form").submit((e)=>{
e.preventDefault()
$.ajax({
url:"https://script.google.com/macros/s/AKfycbzbxprJ3TuRv-WWQKwZKbnXRNOS2yUj8BWqJ4eUpgQ96NF1iKpS4-6fNwi6RAVEPKabcg/exec",
data:$("#submit-form").serialize(),
method:"post",
success:function (response){
alert("Form submitted successfully")
window.location.reload()
//window.location.href="https://google.com"
},
error:function (err){
alert("Something Error")
}
})
})
</script>
</body>
</html>