-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.html
134 lines (105 loc) · 4.97 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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
</head>
<meta charset="utf-8" />
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"></link>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body{
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
opacity: 0;
transition: opacity .7s;
}
.navbar{
border-bottom:1px solid white;
}
.nav-link{
font-size: 1.5rem;
}
@media only screen and (max-device-width: 991px) {
.Image{
margin: 30px !important;
}
.Main{
font-size: 2.2rem !important;
}
.Image{
max-height: 350px !important;
}
.navbar-brand,.nav-item{
font-size: 2.5rem !important;
margin: 8px;
}
}
</style>
<body style="background-color:black;text-align:justify">
<div class="container text-white">
<nav class="navbar navbar-expand-lg navbar-dark py-2 px-0">
<a class="navbar-brand" href="index.html" style="font-size: 1.7rem">Jinit Shah</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" style="font-size: 2.2rem;">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link active" href="About.html"><strong>About</strong></a></li>
<li class="nav-item"><a class="nav-link active" href="Projects.html">Projects</a></li>
<li class="nav-item"><a class="nav-link active" href="Internships.html">Internships</a></li>
<li class="nav-item"><a class="nav-link active" href="Blog.html">Blog</a></li>
</ul>
</div>
</nav>
<div class="row text-white about Main " style="font-size:1.5rem;" >
<div class="row">
<div class="col-lg-8 text-white">
<div class=" m-3" style="display: inline-block">
Hi, I am a Computer Science undergrad at BITS Pilani, Goa Campus currently in my second year. I have tried to explore a few topics : Web development, Data scraping, Financial analysis and Machine Learning. Click on <a href="Projects.html">projects</a> to go through a few of them. I occasionally write articles <a target="_blank" href="https://medium.com/@jinit245">here</a>.
</div>
<div class=" m-3">
As a part of my internships I have worked on forecasting models at PayPal, full stack development and financial analysis at Finpeg. I worked on developing a CRM (Customer Relationship Management) tool. It tracks the progress of leads till they become a client. If you got anything you want to talk about, feel free to leave an email.
<br>
</div>
</div>
<div class="col-lg-4 p-0 Image text-center">
<img src="Static/pic.jpg" class="m-3" style="width: 100%;max-height: 300px;max-width: 300px;border-radius: 5px">
</div>
</div>
<div class="row">
<div class="col-lg-8 text-white">
<div class="text-left m-3 p-0"> I have also worked with the following : </div>
<div class="text-left m-3">
<b> Web development </b>: Node, .NET, AngularJS <br>
<b> Web scraping</b>: Python and Selenium <br>
<b> Data Structures and Algorithms </b> in C++
</div>
</div>
<div class="col-lg-4 links">
<div class="m-3" style="width: 50%">
<div class="row"><div class="col-2 pl-0 text-left"><i class="fa fa-linkedin "></i></div><div class="col-10"><a class="text-white" href="https://www.linkedin.com/in/jinit-shah-0599001a9/">Jinit Shah</a></div></div>
<div class="row"> <div class="col-2 pl-0 text-left"><i class="fa fa-envelope"></i> </div><div class="col-10"><a href="mailto:dornumofficial@gmail.com" class="text-white"> dornumofficial@gmail.com</a></div></div>
<div class="row"> <div class="col-2 pl-0 text-left"><i class="fa fa-github"> </i> </div><div class="col-10"> <a href="https://github.com/jinit24" class="text-white"> jinit24</a></div></div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('.links a').attr('target', '_blank');
});
window.transitionToPage = function(href) {
document.querySelector('body').style.opacity = 0
setTimeout(function() {
window.location.href = href
}, 500)
}
document.addEventListener('DOMContentLoaded', function(event) {
document.querySelector('body').style.opacity = 1
})
</script>
</body>
</html>