-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (120 loc) · 4.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gourav Chawla - Software Developer | Learner | Pythonista</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</head>
<body>
<div class="container-fluid" id="intro">
<!-- <section id="intro"> -->
<div id="particles-js"></div>
<div class="row">
<!-- <div class="col-md-12"> -->
<div id="mugshot">
<img src="assets/img/mugshot.jpg" class="img-circle img-responsive" alt="Gourav Chawla's Mugshot"/>
</div>
<!-- </div> -->
</div>
<div class="row">
<!-- <div class="col-md-12"> -->
<div class="head-text">
<h1 class="tagline">I'm
<span id="typed"></span>
</h1>
<h4 class="sub-tagline">< Software Developer | Learner | Pythonista /></h4>
</div>
<!-- </div> -->
</div>
<div class="row text-center">
<!-- <div class="col-md-12"> -->
<h4 class="line-through"> Connect with me </h4>
<!-- </div> -->
</div>
<div class="row text-center">
<!-- <div class="col-md-12"> -->
<!-- <div class="col-md-1">
<img src="assets/img/twitter.svg" alt="Twitter Icon" style="width: 48px;">
</div>
<div class="col-md-1">
<img src="assets/img/twitter.svg" alt="Twitter Icon" style="width: 48px;">
</div>
<div class="col-md-1">
<img src="assets/img/twitter.svg" alt="Twitter Icon" style="width: 48px;">
</div> -->
<ul id="social-icons">
<li>
<a href="https://twitter.com/techdeviant">
<img src="assets/img/twitter.svg" alt="Twitter Icon" title="Follow me on Twitter">
</a>
</li>
<li>
<a href="https://linkedin.com/in/gouravchawla1">
<img src="assets/img/linkedin.svg" alt="Linkedin Logo" title="Connect with me on LinkedIn">
</a>
</li>
<li>
<a href="https://github.com/gouravchawla">
<img src="assets/img/github.svg" alt="Github Icon" title="Follow me on Github">
</a>
</li>
<li>
<a href="mailto:[email protected]">
<img src="assets/img/mail.svg" alt="Mail Icon" title="Email me">
</a>
</li>
<li>
<a href="/blog">
<img src="assets/img/blog.svg" alt="Blog Icon" title="Read my blog posts">
</a>
</li>
</ul>
<!-- </div> -->
</div>
<!-- </section> -->
</div>
<div class="container-fluid">
<footer class="row">
Copyright <span id="copyright-year"></span> |
<a href="https://www.gouravchawla.com">Gourav Chawla</a> |
<a href="https://madewithlove.org.in" target="_blank">Made with <span style="color: #e74c3c">♥</span> in India</a>
</footer>
</div>
<!-- Scripts -->
<script type="text/javascript" src="assets/js/typed.js"></script>
<script type="text/javascript" src="assets/js/particles.js"></script>
<script type="text/javascript" src="assets/js/app.js"></script>
<!-- Event Listner for typing script -->
<script>
$("#typed").typed({
strings: ["a Software Developer.", "a Learner.", "Gourav Chawla."],
typeSpeed: 30,
callback: function(){
lift();
}
});
function lift(){
$(".head-text").addClass("lift-text");
}
$('#copyright-year').html(new Date().getFullYear());
// Google Analytics Tracking code
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-27793194-3', 'auto');
ga('send', 'pageview');
</script>
<link href="https://api.motion.ai/sdk/webchat.css" rel="stylesheet" type="text/css">
<script src="https://api.motion.ai/sdk/webchat.js"></script>
<script>
motionAI_Init('55242?color=62a8ea&sendBtn=SEND&inputBox=Type%20something...&token=c06ff1a1690adeb5938147c8edad67bb',true,400,470,'https://gouravchawla.com/assets/img/chat.png');
/* You may also invoke motionAI_Open() to manually open the modal. */
</script>
</body>
</html>