-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
710 lines (561 loc) · 25.8 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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
<!DOCTYPE html>
<html>
<head>
<title>Siddharth Patel</title>
<link rel="shortcut icon" type="image/x-icon" href=".\images\website_Logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1"/>
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&family=Russo+One&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="default.css">
<link id="theme-style" rel="stylesheet" type="text/css">
</head>
<body>
<section class="s1">
<div class="main-container">
<div class="greeting-wrapper">
<h1>Hi, I'm Siddharth Patel</h1>
</div>
<div class="intro-wrapper">
<div class="nav-wrapper">
<!-- Link around dots-wrapper added after tutorial video -->
<a href="index.html">
<div class="dots-wrapper">
<div id="dot-1" class="browser-dot"></div>
<div id="dot-2" class="browser-dot"></div>
<div id="dot-3" class="browser-dot"></div>
</div>
</a>
<ul id="navigation">
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="left-column">
<img alt="profile_pic" id="profile_pic" src="Profile_2.png">
<h5 style="text-align: center;line-height: 0;">Personalize Theme</h5>
<div id="theme-options-wrapper">
<div data-mode="light" id="light-mode" class="theme-dot"></div>
<div data-mode="blue" id="blue-mode" class="theme-dot"></div>
<div data-mode="green" id="green-mode" class="theme-dot"></div>
<div data-mode="purple" id="purple-mode" class="theme-dot"></div>
</div>
<p id="settings-note">*Theme settings will be saved for<br>your next vist</p>
</div>
<div class="right-column">
<div id="preview-shadow">
<div id="preview">
<div id="corner-tl" class="corner"></div>
<div id="corner-tr" class="corner"></div>
<h3>What I Do</h3>
<p> I am studying bachelor's degree in engineering at <i>Hochschule für Technik und Wirtschaft Berlin (HTW Berlin)</i> in Mechatronics. </p>
<div id="corner-br" class="corner"></div>
<div id="corner-bl" class="corner"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="s2">
<div class="main-container">
<div class="about-wrapper">
<div class="about-me">
<h4>More about me</h4>
<p>Hello everyone, my name is Siddhart Patel, and I’m a man on a mission—a mission driven by a passion for helping others, not just personal gain. My journey began early, starting at age 8 when I first played with electronics. By the time I was 10, I built my first functional circuit, and it didn’t take long before I was diving into microcontroller-based projects, coding, math, physics, and eventually engineering and science.</p>
<p>I’m currently studying Electrical Engineering at HTW Berlin, where I also work as a lab assistant. Recently, I was honored with the Artmund Scholarship for my academic performance and my active role in the university community. You can find more about that here.</p>
<p>In addition to my studies and work, I spend weekends teaching Python to kids in Berlin, sharing my love for technology with the next generation. I do all of this because I have always known what I wanted to do—I’ve always been certain of my goals. I approach life with clarity, dedication, and an unbreakable commitment to achieving my dreams without taking shortcuts. My ultimate goal is to become a scientist in my field, grounded in ethics, loyalty, and hard work.</p>
<hr>
<h4>TOP EXPERTISE</h4>
<ol>
<li>Experienced in creating Arduino-based projects.</li>
<li>Robot Operating System (ROS) developer with Python.</li>
<li>Writer, published my first book at the age of 21.</li>
<li>Expert in scientific writing with LaTeX. Read my latest book <a href="#first_book">here</a>.</li>
<li>Led the development of a Mars rover prototype for a local engineering university.</li>
<li>Implemented control systems for regulating motor shaft speed and position using PID and Nikolas Ziegler methods.</li>
<li>Proficient in reading and understanding datasheets of various modules, sensors, and development boards.</li>
<li>Passionate educator, teaching Python, Robotics, and Scratch to kids, helping foster the next generation of innovators.</li>
</ol>
<div id="skills">
<ul>
<li>Arduino/IDE</li>
<li>C/C++</li>
<li>PCB Design</li>
<li>Electronics</li>
<li>HTML/CSS</li>
<li>MATLAB</li>
<li>Fusion 360/CAD/3D Design</li>
<li>3D Printing</li>
<li>Python (for Robotics and ROS Development)</li>
<li>ROS (Robot Operating System)</li>
<li>LaTeX (Scientific Writing)</li>
<li>Control Systems (PID and Nikolas Ziegler Methods)</li>
<li>System Design</li>
<li>Teaching (Python, Robotics, Scratch, Maths, Physics)</li>
<li>Teamwork and Leadership</li>
<li>Multilingual: English, German, Hindi, Gujarati</li>
<li>Book Author (Published at age 21)</li>
</ul>
<ul>
</ul>
</div>
</div>
<div class="social-links">
<img id="social_img" src=".\images\github_page.png">
<img id="social_img" src=".\images\Robot.gif">
<h3>Find me on GitHub</h3>
<a target="_blank" href="https://github.com/siddharthpatelde">GitHub: @siddharthpatelde</a>
<p><button class="button" data-sharer="CV" onclick="downloadCV()">Download CV</button></p>
<script>
function downloadCV() {
var cvUrl = "./images/CV - Siddharth Patel.pdf";
window.open(cvUrl, '_blank');
}
</script>
<p><button class="button" data-sharer="CV" onclick="downloadQR()">QR Code</button></p>
<script>
function downloadQR() {
var cvUrl = "./images/Website_QR_latex.pdf";
window.open(cvUrl, '_blank');
}
</script>
</div>
</div>
</div>
</section>
</section>
<section id="timeline" class="s1">
<div class="main-container">
<h3 style="text-align: center;">Professional Work Experience</h3>
<!-- Work Experience Section -->
<div class="timeline">
<!-- First Experience - Python Instructor -->
<div class="container left">
<div class="content">
<h2>04/2024 - Now</h2>
<p>Python Instructor - Train the Future Academy</p>
<!-- Read More Button -->
<a href="#train-future">Read More</a>
</div>
</div>
<!-- Second Experience - Project Assistant -->
<div class="container right">
<div class="content">
<h2>11/2023 - Now</h2>
<p>Project Assistant at HTW Berlin</p>
<!-- Read More Button -->
<a href="#htw-berlin">Read More</a>
</div>
</div>
</div>
</div>
</section>
<section class="s1">
<div class="main-container">
<!-- About Me Section 1 -->
<div id="htw-berlin" class="about-wrapper">
<!-- Project Post 1 -->
<div class="about-me">
<div class="post">
<img class="thumbnail" src="./images/Rover_thoumbnail.gif" alt="Rover Thumbnail">
<div class="post-preview">
<h6 class="post-title">Rover Prototype</h6>
<p class="post-intro">In this post, you'll find my contribution to the project.</p>
<a href="Rover_post.html">Read More</a>
</div>
</div>
</div>
<!-- About the Role at HTW Berlin -->
<div class="about-me">
<h4>Project Assistant at HTW Berlin (11/23 - Now)</h4>
<p>
I am currently working at HTW Berlin, where I have the privilege of collaborating with
<a href="https://www.htw-berlin.de/hochschule/personen/person/?eid=11250">Dr. Professor Jan Hanno Carstens</a>
on the development of an industrial-grade rover and drone within his company.
</p>
<hr>
</div>
<!-- Social Links Section -->
<div class="social-links">
<img id="social_img" src="./images/S04_HTW_Berlin_Logo_pos_FARBIG_RGB.jpg" alt="HTW Berlin Logo">
<h3>Project Github Page</h3>
<a target="_blank" href="https://github.com/siddharthpatelde/ROVER_DRONE_HTW_BERLIN">GitHub: @ROVER_DRONE_HTW_BERLIN</a>
</div>
</div>
</div>
</section>
<section class="s1">
<div class="main-container">
<!-- About Me Section 2 -->
<div id="train-future" class="about-wrapper">
<!-- Project Post 2 with Video -->
<div class="about-me">
<div class="post video-post">
<video autoplay controls loop muted src="https://trainthefuture.com/wp-content/uploads/2024/01/WhatsApp-Video-2024-01-29-at-16.12.17_ee2c3834.mp4"></video>
<div class="post-preview">
<h6 class="post-title">About Train The Future</h6>
<p class="post-intro">Click "Read More" to explore our current courses and learn more about what we offer.</p>
<a href="https://trainthefuture.com/uber-uns/">Read More</a>
</div>
</div>
</div>
<!-- About the Role as Python Instructor -->
<div class="about-me">
<h4>Python Instructor - Train the Future Academy (04/24 - Now)</h4>
<p>
I am currently working as a Python teacher at Train the Future Academy. I teach Python to kids aged 9 to 16, and sometimes introduce visual programming to children aged 6 to 10. I also volunteer to teach them how to build robots, as I have a passion for robotics and electronics.
</p>
<p>
Teaching is one of my hobbies, just like making robots and playing with electronics. My approach to teaching programming, mathematics, and physics is driven by a deep understanding of these subjects, ensuring that my students grasp the core concepts thoroughly.
</p>
<hr>
</div>
<!-- Social Links Section -->
<div class="social-links">
<img id="social_img" src="./images/top.png" alt="Top Image">
<img id="social_img" src="./images/bottom.jpg" alt="Bottom Image">
<h3>Train The Future page</h3>
<a target="_blank" href="https://trainthefuture.com/">https://trainthefuture.com/</a>
</div>
</div>
</div>
</section>
<!-- Back to Timeline Button -->
<a id="back-to-timeline" class="back-to-timeline" href="#timeline">
↑ <!-- Unicode for an up arrow -->
</a>
<script>
// Function to show the arrow when scrolling into specific sections
document.addEventListener('scroll', function() {
// Get the back-to-timeline element
const backToTimelineButton = document.getElementById('back-to-timeline');
// Get the positions of the #train-future and #htw-berlin sections
const trainFutureSection = document.getElementById('train-future');
const htwBerlinSection = document.getElementById('htw-berlin');
const trainFutureTop = trainFutureSection.getBoundingClientRect().top;
const htwBerlinTop = htwBerlinSection.getBoundingClientRect().top;
// Show the back-to-timeline button when scrolling to specific sections
if (trainFutureTop < window.innerHeight && trainFutureTop > 0 || htwBerlinTop < window.innerHeight && htwBerlinTop > 0) {
backToTimelineButton.style.display = 'block'; // Show the button
} else {
backToTimelineButton.style.display = 'none'; // Hide the button
}
});
</script>
<section id="first_book" class="s2">
<div class="main-container">
<h2><center>Intro to Robot Operating System</center></h2>
<!-- About Me Section 1 -->
<div id="book-section" class="about-wrapper">
<!-- Project Post 1 -->
<div class="about-me">
<div class="post">
<img class="thumbnail" src="./images/book_cover.png" alt="Rover Thumbnail">
<div class="post-preview">
<h6 class="post-title">My Latest Book</h6>
<p class="post-intro">This book is not just a guide to robotics, but a work of art. Entirely coded in LaTeX, with more than 6000 lines of LaTeX code, including the book cover design. Additionally, the chapter themes were designed by me, ensuring a unique and professional presentation throughout the book. The LaTeX code for the chapter themes is available upon direct request to the author.</p>
<a href="complet_cover.pdf" >View Cover</a>
</div>
</div>
</div>
<!-- What the Book is About -->
<div class="about-me">
<h4>About the Book</h4>
<p> This book is more than a guide to ROS and Python for robotics—it's shaped by my early passion for electronics and problem-solving. </p> <p> In 2023, while working with Prof. Dr.-Ing. Jan Hanno Carstens, I mastered ROS by focusing on essential concepts, just as I approached learning German quickly. </p> <p> This book distills the key ROS commands and concepts, offering a fast, practical approach for building robotics applications efficiently. </p> <p> My goal is to provide a concise roadmap to mastering ROS, with real-world projects and a fast-track to success. The next volume will cover more advanced projects. </p>
<hr>
</div>
<!-- Social Links Section -->
<div class="social-links">
<img id="social_img" src="./images/book_other_cover.png" alt="HTW Berlin Logo">
<h3>Explore the Book</h3>
<p>
Curious to learn more? You can read the table of contents, preface, abstract, and the first chapter. For more details or to request a copy, feel free to contact me.
</p>
<a target="_blank" href="output_1_to_30.pdf">Read Table of Contents, Preface, Abstract, and First Chapter</a>
</div>
</div>
</div>
</section>
<section class="s1">
<div class="main-container">
<h3 style="text-align: center;">Personal projects</h3>
<div class="post-wrapper">
<div>
<div class="post">
<img alt="Edge Detection LIDAR" class="thumbnail" src="./images/thumbnail_edge_detection.png">
<div class="post-preview">
<h6 class="post-title">2D LIDAR Edge Detection</h6>
<p class="post-intro">Developed a C++ function to calculate the distance to the next edge using a 2D LIDAR sensor and Raspberry Pi Pico.</p>
<a href="https://github.com/siddharthpatelde/distance-to-next-edge">Read More</a>
</div>
</div>
</div>
<div>
<div class="post">
<img alt class="thumbnail" src=".\images\thumbnail_Line-Following_robot.gif">
<div class="post-preview">
<h6 class="post-title">Line-Following-Robot</h6>
<p class="post-intro">made a simple line-following robot, without using any micro controller.</p>
<a href="Line-Following-Robot.html">Read More</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\thumbnail_MRP.jpg">
<div class="post-preview">
<h6 class="post-title">Mars Rover Prototype</h6>
<p class="post-intro">I proudly crafted a Mars Rover prototype for college students.</p>
<a href="Mars-Rover-Prototype.html">Read More</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\tumbnail_RFID.jpg">
<div class="post-preview">
<h6 class="post-title">Radio-Frequency IDentification</h6>
<p class="post-intro">designed and implemented an innovative RFID security system for my room door</p>
<a href="Radio-Frequency-IDentification.html">Read More</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\thoumbnail_OAR.jpg">
<div class="post-preview">
<h6 class="post-title">Obstacle Avoiding Robot</h6>
<p class="post-intro">Crafting an Obstacle-Avoiding Robot Utilizing Ultrasonic Sensor</p>
<a href="Obstacle Avoiding Robot.html">Read More</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\thoumbnail_hollowgraph.gif">
<div class="post-preview">
<h6 class="post-title">Holographic Effect</h6>
<p class="post-intro">Created a delightful holographic project that offers a playful experience to the world of electronics.</p>
<a href="work-in-progress.htm">Work-in-progress</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\thumbnail_Blutooth_car.jpg">
<div class="post-preview">
<h6 class="post-title">Bluetooth Car</h6>
<p class="post-intro"></p>
<a href="work-in-progress.htm">Work-in-progress</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\thoumbnail_taser.gif">
<div class="post-preview">
<h6 class="post-title">Taser</h6>
<p class="post-intro"></p>
<a href="work-in-progress.htm">Work-in-progress</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="s2">
<div class="main-container">
<!--<div class="main-container">
<h3 style="text-align: center;">Work Experience</h3>
<div class="post-wrapper">
<div>
<div class="post">
<img class="thumbnail" src="images/tcs-logo.png">
<div class="post-preview">
<h6 class="post-title">Tata Consultancy Services</h6>
<p class="post-intro">Systems Engineer - Full time (May 2021 - Nov.2022)</p>
<a href="post.html">Read More</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src="images/revokarma-logo.jpg">
<div class="post-preview">
<h6 class="post-title">RevoKARMA Hub Solutions </h6>
<p class="post-intro">Software Engineer Intern (May 2018 - June 2018)</p>
<a href="post.html">Read More</a>
</div>
</div>
</div>
</div>
</div>
<a href=""></a>
<h3 style="text-align: center;">Get In Touch</h3>
<form onsubmit="sendEmail(); reset(); return false;">
<a name="contact"></a>
<label>Name</label>
<input class="input-field" type="text" name="name">
<label>Subject</label>
<input class="input-field" type="text" name="subject">
<label>Email</label>
<input class="input-field" type="text" name="email">
<label>Message</label>
<textarea class="input-field" name="message"></textarea>
<input id="submit-btn" type="submit" value="Send">
</form>
</div>-->
</section>
<section class="s2">
<div class="main-container">
<h3 style="text-align: center;">Research Work / Notes</h3>
<div class="post-wrapper">
<div>
<div class="post">
<img class="thumbnail" src="./images/matlab-logo.jpg">
<div class="post-preview">
<h6 class="post-title">MATLAB Notes By Siddharth Patel</h6>
<p class="post-intro">I have taken a MATLAB course and created some handy notes by my self. You can learn the basics by reading these notes while using MATLAB, and I'll keep them up-to-date for you.</p>
<a href="./images/MATLAB Notes.pdf" target="_blank">Note Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src="./images/C_language_logo.png">
<div class="post-preview">
<h6 class="post-title">C language Notes</h6>
<p class="post-intro">I started with C language notes before diving into Arduino, and it greatly enhanced my Arduino skills.</p>
<a href="./images/C_Language_notes.pdf" target="_blank">Note Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src="./images/APPLICATION_OF_PID.png">
<div class="post-preview">
<h6 class="post-title">Study and application of differential drive equations on a differential drive robot.</h6>
<p class="post-intro">You must read more to learn further about it.</p>
<a href="./images/Application_of_PID_not_finished_no_latex_version.pdf">Read More</a>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="s1">
<div class="main-container">
<h3 style="text-align: center;">Certifications</h3>
<div class="post-wrapper">
<div>
<div class="post">
<img class="thumbnail" src=".\images\coursera_logo.png">
<div class="post-preview">
<h6 class="post-title">The Arduino Platform and C Programming</h6>
<p class="post-intro">an course authorized by University of California, Irvine and offered through Courser</p>
<a href="https://www.coursera.org/account/accomplishments/verify/68RCQBYQMYHD" target="_blank">Certification Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\coursera_logo.png">
<div class="post-preview">
<h6 class="post-title">Introduction to the Internet of Things and Embedded Systems</h6>
<p class="post-intro">an course authorized by University of California, Irvine and offered through Courser</p>
<a href="https://www.coursera.org/account/accomplishments/verify/49Q2S5PNA3F4" target="_blank">Certification Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\logo_of_NIT_Calicut.svg.png">
<div class="post-preview">
<h6 class="post-title">Mechatronics and Automantion</h6>
<p class="post-intro">a webinar on Mechatronics and Automantion by IEEE NITC SB</p>
<a href=".\images\Certificate for Siddharth Patel[501].pdf" target="_blank">Certification Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src=".\images\telc_logo.png">
<div class="post-preview">
<h6 class="post-title">German language (level C1)</h6>
<p class="post-intro">telc Deutsch C1 Hochschule Council of Europe level C1</p>
<a href=".\images\Zert telc Deutsch C1 HS_SA Patel.pdf" target="_blank">Certification Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src="./images/ros-course.png" alt="ROS Udemy Course Thumbnail">
<div class="post-preview">
<h6 class="post-title">ROS (Robot Operating System) Course</h6>
<p class="post-intro">
I completed a course on ROS, learning to program robots using Python and ROS tools. It covers setup, coding, and simulations, enhancing my understanding of robotic systems.
</p>
<a href="https://udemy-certificate.s3.amazonaws.com/pdf/UC-eb712b71-949d-4e19-b3fb-1d46ddd93815.pdf" target="_blank">Certification Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img class="thumbnail" src="./images/latex-750x300.jpg">
<div class="post-preview">
<h6 class="post-title">LaTex</h6>
<p class="post-intro">I took a quick course on LaTeX, as I thought it was a good habit to write each scientific literature in LaTeX right from the first semester. This way, as I progress in my journey towards higher education in the research field, it will benefit me.</p>
<a href="https://udemy-certificate.s3.amazonaws.com/pdf/UC-6b71f568-a022-467a-9ddf-ced6e3316982.pdf" target="_blank">Certification Link</a>
</div>
</div>
</div>
<div>
<div class="post">
<img alt class="thumbnail" src="./images/certificate_logo.png">
<div class="post-preview">
<h6 class="post-title">Abiturzeugnis</h6>
<p class="post-intro">mein FSP (deutsches Abitur) zusammen mit meinem Deutschzertifikat und meinem TestAS</p>
<a href="./images/FSP_C1_TestAS.pdf" target="_blank">Certification Link</a>
</div>
</div>
</div>
</div>
</div>
<div class="greeting-wrapper">
<h4><ul id="navigation">
<li><a href="contact.html">Contact</a></li>
</ul></h4>
</div>
</section>
<section class="s2">
<h3 style="text-align: center;">Share my website</h3>
<div class="post-wrapper">
<div>
<button class="button" data-sharer="email" data-title="Siddharth's Portfolio: " data-url="https://siddharthpatelde.github.io/Portfolio/" data-subject="Sharing Siddharth's Portfolio" data-to="someone@xyz.com">Share via Email</button>
</div>
<div>
<button class="button" data-sharer="whatsapp" data-title="Checkout Siddharths Portfolio" data-url="https://siddharthpatelde.github.io/Portfolio/">Share on Whatsapp</button>
</div>
<div>
<button class="button" data-sharer="linkedin" data-url="https://siddharthpatelde.github.io/Portfolio/">Share on Linkedin</button>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/sharer.js@latest/sharer.min.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<!--<script>
function sendEmail(){
Email.send({
Host : "smtp.elasticemail.com",
Username : "siddharthanghan@gmail.com",
Password : "F6FE2A6D2001A13327B26AC296B524D786F1",
To : 'siddharthanghan.de@gmail.com',
From : document.getElementById("email").value,
Subject : "New Contact Form Enquiry",
Body : "And this is the body"
}).then(
message => alert(message)
);}</script> -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>