-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
267 lines (266 loc) · 13.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body class="main-content">
<header class="container header active" id="home">
<div class="header-content">
<div class="left-header">
<div class="h-shape"></div>
<div class="image">
<img src="img/my_photo.jpg" alt="">
</div>
</div>
<div class="right-header">
<h1 class="name">
Hi, I'm <span>Siddhartha Sinha</span>
</h1>
<p>
I'm a student of life. Navigating the seas of academia, charting a course with creativity.
In the world of possibilities, my portfolio is the map to my potential.
</p>
<p>
Fueling curiosity, igniting creativity—welcome to my digital canvas.
</p>
</div>
</div>
</header>
<main>
<section class="container about" id="about">
<div class="main-title">
<h2>About <span>me</span><span class="bg-text">my stats</span></h2>
</div>
<div class="about-container">
<div class="left-about">
<h4>Information About me</h4>
<p>
Hello there! I'm Siddhartha Sinha, a postgraduate student from Christ University, where I'm currently immersed in exploring the exciting world of Data Science. Proficient in Data Analysis, I try to bring a blend of my little technical expertise and creative flair to my work. Throughout my academic journey, I've had the opportunity to dive into Statistics and Data Science, undertaking projects like "Exploratory Data Analysis of EPL 2020-21 season". I take pride in successfully completing my undergraduate degree at University of Calcutta where I gained valuable and thoughtful insights in the field of Statistics. What fuels my passion is a deep curiosity for predicting the future in the domain of footballing analysis, finding joy in solving complex problems like model building and model tuning. Looking ahead, I'm eager to combine multimodal data integration with player and team dynamics in field of football analysis, continuing my journey as a lifelong learner and creator. Feel free to browse through my portfolio and get in touch if you'd like to connect or collaborate. Let's create something amazing together!
</p>
</div>
<div class="right-about">
<div class="about-item">
<div class="abt-text">
<p class="large-text">5+</p>
<p class="small-text">Projects <br /> Completed</p>
</div>
</div>
<div class="about-item">
<div class="abt-text">
<p class="large-text">Less than 1</p>
<p class="small-text">Year of <br /> experience</p>
</div>
</div>
</div>
</div>
<div class="about-stats">
<h4 class="stat-title">My Skills</h4>
<div class="progress-bars">
<div class="progress-bar">
<p class="prog-title">R</p>
<div class="progress-con">
<p class="prog-text">75%</p>
<div class="progress">
<span class="r"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">HTML</p>
<div class="progress-con">
<p class="prog-text">95%</p>
<div class="progress">
<span class="html"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">PYTHON</p>
<div class="progress-con">
<p class="prog-text">70%</p>
<div class="progress">
<span class="python"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">CSS</p>
<div class="progress-con">
<p class="prog-text">75%</p>
<div class="progress">
<span class="css"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">MYSQL</p>
<div class="progress-con">
<p class="prog-text">60%</p>
<div class="progress">
<span class="mysql"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">JAVASCRIPT</p>
<div class="progress-con">
<p class="prog-text">70%</p>
<div class="progress">
<span class="js"></span>
</div>
</div>
</div>
</div>
</div>
<h4 class="stat-title">My Timeline</h4>
<div class="timeline">
<div class="timeline-item">
<div class="tl-icon">
<i class="fas fa-briefcase"></i>
</div>
<p class="tl-duration">2006 - 2017</p>
<h5>St. Lawrence High School<span> Alma Mater</span></h5>
<p>
Dedicated student of my nurturing alma mater where knowledge became a lifelong companion.
</p>
</div>
<div class="timeline-item">
<div class="tl-icon">
<i class="fas fa-briefcase"></i>
</div>
<p class="tl-duration">2017 - 2019</p>
<h5>Ballygunge Govt High School<span> Senior Secondary</span></h5>
<p>
Thrived in the challenges of higher secondary education, honing skills and knowledge for the journey ahead.
</p>
</div>
<div class="timeline-item">
<div class="tl-icon">
<i class="fas fa-briefcase"></i>
</div>
<p class="tl-duration">2020 - 2023</p>
<h5>University of Calcutta<span> BSc Statistics</span></h5>
<p>
Proud recipient of an undergraduate degree in Statistics, where I transformed data into insights and cultivated a passion for analytical precision.
</p>
</div>
<div class="timeline-item">
<div class="tl-icon">
<i class="fas fa-briefcase"></i>
</div>
<p class="tl-duration">2023 - present</p>
<h5>Christ University<span> MSc Data Science</span></h5>
<p>
Currently pursuing a postgraduate degree in Data Science, blending theoretical insights with hands-on expertise to navigate the frontiers of data-driven innovation.
</p>
</div>
</div>
</section>
<section class="container contact" id="contact">
<div class="contact-container">
<div class="main-title">
<h2>Contact <span>Me</span><span class="bg-text">Contact</span></h2>
</div>
<div class="contact-content-con">
<div class="left-contact">
<h4>Contact me here</h4>
<p>
Connecting ideas, forging relationships, and cultivating opportunities - contact me easily through the channels listed below
</p>
<div class="contact-info">
<div class="contact-item">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
<span>Location:</span>
</div>
<p>
Lavasa, Pune, Maharashtra, India
</p>
</div>
<div class="contact-item">
<div class="icon">
<i class="fas fa-envelope"></i>
<span>Email:</span>
</div>
<p>
<span>[email protected]</span>
</p>
</div>
<div class="contact-item">
<div class="icon">
<i class="fas fa-user-graduate"></i>
<span>Mobile Number:</span>
</div>
<p>
<span>+91 8582873442</span>
</p>
</div>
<div class="contact-item">
<div class="icon">
<i class="fas fa-globe-africa"></i>
<span>Languages:</span>
</div>
<p>
<span>Bengali, English, Hindi, Spanish</span>
</p>
</div>
</div>
<div class="contact-icons">
<div class="contact-icon">
<a href="https://www.facebook.com/" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://github.com/" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/feed/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="right-contact">
<form action="" class="contact-form">
<div class="input-control i-c-2">
<input type="text" required placeholder="YOUR NAME">
<input type="email" required placeholder="YOUR EMAIL">
</div>
<div class="input-control">
<input type="text" required placeholder="ENTER SUBJECT">
</div>
<div class="input-control">
<textarea name="" id="" cols="15" rows="8" placeholder="Message Here..."></textarea>
</div>
<div class="submit-btn">
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<div class="controls">
<div class="control active-btn" data-id="home" >
<i class="fas fa-home"></i>
</div>
<div class="control" data-id="about">
<i class="fas fa-user"></i>
</div>
<div class="control" data-id="contact">
<i class="fas fa-envelope-open"></i>
</div>
</div>
<div class="theme-btn">
<i class="fas fa-adjust"></i>
</div>
<script src="app.js"></script>
</body>
</html>