-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
223 lines (213 loc) · 11.3 KB
/
Copy pathindex.html
File metadata and controls
223 lines (213 loc) · 11.3 KB
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
<!DOCTYPE html>
<html lang=""en>
<head>
<title>Personal Portfolio Website - Sudeb Mandal</title>
<link rel="icon" type="image/x-icon" href="/images/logo.jpg">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/823e2f249d.js" crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-267849389-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-267849389-1');
</script>
</head>
<body>
<div id="header">
<div class="container">
<nav>
<img src="Images/logo.jpg" class="logo">
<ul id="sidemenu">
<li><a href="#header">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
<i class="fas fa-times" onclick="closemenu()"></i>
</ul>
<i class="fas fa-bars" onclick="openmenu()"></i>
</nav>
<div class="header-text">
<p>Programmer/Developer</p>
<h1>Hi! I'm <span>Sudeb</span><br>from Kolkata,India.</h1>
</div>
</div>
</div>
<!---------ABOUT--------->
<div id="about"></div>
<div class="container">
<div class="row">
<div class="about-col-1">
<img src="Images/user1.png">
</div>
<div class="about-col-2">
<h1 class="sub-title">About Me</h1>
<p>I am a graduate level programmer with a hunger for exploring, evaluating and inducting new technology platforms
across SaaS, PaaS and custom workflows and willing to work along with business and functional teams and develop a deep
understanding of various operational processes in the relevant areas of implementation.</p>
<div class="tab-titles">
<p class="tab-links active-link" onclick="opentab('skills')">Skills</p>
<p class="tab-links"onclick="opentab('experience')">Experience</p>
<p class="tab-links"onclick="opentab('education')">Education</p>
</div>
<div class="tab-contents active-tab" id="skills">
<ul>
<li><span>Languages</span><br>Core Java,C++,Data Structure and Algorithm,OOP</li>
<li><span>Databases</span><br>MySQL RDBMS</li>
<li><span>Dev-Tools</span><br>Visual-Studio Code,GIT,Chrome-Dev-Tools</li>
<li><span>MoreOver</span><br>Linux and Shell scripting basics,Networking and Operating System</li>
</ul>
</div>
<div class="tab-contents" id="experience">
<ul>
<li><span>April,2023</span><br>KodeKloud Free Week Intern</li>
<li><span>July,2022 - Jan,2023</span><br>Management Trainee at Haldia Petrochemicals Ltd.</li>
<li><span>July,2021 - Aug,2021</span><br>Intern at Academy of Skill Development</li>
<li><span>April,2021 - July,2021</span><br>Cognizant Digital Nurture Intern</li>
</ul>
</div>
<div class="tab-contents" id="education">
<ul>
<li><span>2018 - 2022</span><br>B.Tech from Haldia Institute of Technology(Applied Electronics & Instrumentation with 8.86 GPA)</li>
<li><span>2017</span><br>Higher Secondary from Dakshin Moyna High School(H.S.)(86%)</li>
<li><span>2015</span><br>Matriculation from Dakshin Moyna High School(H.S.)(93.4%)</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!----My Projects----->
<div id="projects">
<div id="container">
<h1 class="sub-title">Projects</h1>
<div class="projects-list">
<div>
<h2>Major Project</h2>
<p>Design of Optimal PID controller using Artificial Neural Network</p>
<a href="https://drive.google.com/file/d/1y6_RM-bS2ji1LF1hBqcHK4i72-V1Lprp/view?usp=share_link" target="_blank">Learn more</a>
</div>
<div>
<h2>Mini Projects</h2>
<p>Aurdino Automation Applications</p>
<a href="https://www.facebook.com/isa.hit15/" target="_blank">Join us</a>
</div>
<div>
<h2>Internship Project</h2>
<p>Industrial Automation Using PLC & DCS</p>
<a href="https://drive.google.com/file/d/19Cu_viAMqkeyG-KqyKhQi7oAOun7W1Ac/view?usp=share_link" target="_blank">Project Completion Certificate</a>
</div>
</div>
</div>
</div>
<!-------My Portfolio----->
<div id="portfolio">
<div class="container">
<h1 class="sub-title">My Portfolio</h1>
<div class="work-list">
<div class="work">
<img src="Images/linux-logo.jpg">
<div class="layer">
<h3>Learning Linux Basics Course & Labs</h3>
<p>Check out my recent Linux Certificate</p>
<a href="https://kodekloud.com/wp-content/uploads/ldcvss-certificates/ea51b379f59b581af73e3e763d4ef9ee.jpg" target="_blank"><i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<div class="work">
<img src="Images/bash-logo.jpg">
<div class="layer">
<h3>Shell Scripts for Beginners</h3>
<p>Check out my recent Shell Scripting Certificate</p>
<a href="https://kodekloud.com/certificate-verification/2D08C32D7672-2D08BD27B7BC-2D08BCFA65CA/" target="_blank"><i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<div class="work">
<img src="Images/build.jpg">
<div class="layer">
<h3>DevOps Prerequisite Course for Beginners</h3>
<p>Check out my DevOps Prerequisite recent Certificate</p>
<a href="https://kodekloud.com/certificate-verification/2D08C32D7672-2D08BD27E122-2D08BCFA65CA/" target="_blank"><i class="fas fa-external-link-alt"></i></a>
</div>
</div>
</div>
<a href="https://www.linkedin.com/in/sudeb-mandal-2b7472150/details/certifications/" target="_blank" class="btn">See More</a>
</div>
</div>
<!---------CONTACTS-------->
<div id="contact">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="fa-solid fa-paper-plane"></i>mandal.sudeb.12@gmail.com</p>
<p><i class="fa-solid fa-square-phone"></i>7797721844</p>
<div class="social-icons">
<a href="https://www.facebook.com/sudeb.mandal.186/" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/ericx01/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.hackerrank.com/mandalsudeb98" target="_blank"><i class="fab fa-hackerrank"></i></a>
<a href="https://www.linkedin.com/in/sudeb-mandal-2b7472150/" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
<a href="Images/Sudeb_Mandal_Resume_2023_updated.pdf" download class="btn btn2">Download resume</a>
</div>
<div class="contact-right">
<form name="submit-to-google-sheet">
<input type="text" name="Name" placeholder="Your Name" required>
<input type="email" name="Email" placeholder="Your Email" required>
<textarea name="Message" rows="6" placeholder="Your Message"></textarea>
<button type="submit" class="btn btn2">Submit</button>
</form>
<span id="msg"></span>
</div>
</div>
</div>
<div class="copyright">
<p>Copyright © Sudeb Mandal <i class="fas fa-heart"></i></p>
</div>
</div>
<script>
var tablinks = document.getElementsByClassName("tab-links");
var tabcontents = document.getElementsByClassName("tab-contents");
function opentab(tabname){
for(tablink of tablinks){
tablink.classList.remove("active-link");
}
for(tabcontent of tabcontents){
tabcontent.classList.remove("active-tab");
}
event.currentTarget.classList.add("active-link");
document.getElementById(tabname).classList.add("active-tab");
}
</script>
<script>
var sidemenu = document.getElementById("sidemenu");
function openmenu(){
sidemenu.style.right = "0";
}
function closemenu(){
sidemenu.style.right = "-200px";
}
</script>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbzPhT6l3HlWO062aGyfz2KCrC5_41i0WehvAF-PDcg5SBajJAgCwXtQkinO5zVphElA/exec'
const form = document.forms['submit-to-google-sheet']
const msg = document.getElementById("msg")
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(response => {
msg.innerHTML = "Message sent successfully "
setTimeout(function(){
msg.innerHTML = ""
},2000)
form.reset()
})
.catch(error => console.error('Error!', error.message))
})
</script>
</body>
</html>