-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
744 lines (653 loc) · 26.5 KB
/
Copy pathindex.html
File metadata and controls
744 lines (653 loc) · 26.5 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
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
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Devdath Pradeep Valiya Veetil - Portfolio</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Georgia', serif;
background: #ffffff;
color: #333333;
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 0;
border-bottom: 1px solid #e0e0e0;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: #000000;
text-decoration: none;
letter-spacing: -0.5px;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: #666666;
text-decoration: none;
transition: color 0.3s ease;
position: relative;
font-weight: 500;
}
.nav-links a:hover {
color: #000000;
}
.nav-links a.active {
color: #000000;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 1px;
background: #000000;
transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}
/* Page Sections */
.page {
display: none;
min-height: 100vh;
padding: 100px 0 50px;
}
.page.active {
display: block;
}
/* Hero Section */
.hero {
text-align: center;
padding: 4rem 0;
border-bottom: 1px solid #e0e0e0;
margin-bottom: 3rem;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
color: #000000;
font-weight: 300;
letter-spacing: -1px;
}
.hero p {
font-size: 1.1rem;
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
color: #666666;
}
.cta-button {
display: inline-block;
background: #000000;
color: white;
padding: 12px 30px;
text-decoration: none;
border: 2px solid #000000;
font-weight: 500;
transition: all 0.3s ease;
letter-spacing: 0.5px;
}
.cta-button:hover {
background: #ffffff;
color: #000000;
}
/* Grid Layouts */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.card {
background: #ffffff;
border: 1px solid #e0e0e0;
padding: 2rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card h3 {
color: #000000;
margin-bottom: 1rem;
font-size: 1.3rem;
font-weight: 600;
}
.card p {
margin-bottom: 1rem;
color: #666666;
font-size: 0.95rem;
}
.card-image {
width: 100%;
height: auto;
overflow: hidden;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: center;
}
.card-image img {
width: 100%;
max-height: 200px; /* Optional limit */
object-fit: cover; /* Ensures it fills nicely without distortion */
border: 1px solid #e0e0e0;
border-radius: 6px; /* optional */
}
.tech-stack {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1rem;
}
.tech-tag {
background: #f5f5f5;
color: #333333;
padding: 0.3rem 0.8rem;
border: 1px solid #e0e0e0;
font-size: 0.85rem;
font-weight: 500;
}
/* About Section */
.about-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
align-items: center;
margin-top: 3rem;
}
.about-image {
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}
.about-image img {
width: 100%;
max-width: 250px; /* You can change this size */
height: auto;
object-fit: cover;
border-radius: 8px; /* optional for rounded corners */
border: 1px solid #e0e0e0;
}
.about-text h2 {
color: #000000;
margin-bottom: 1rem;
font-size: 2.5rem;
font-weight: 300;
}
.about-text p {
margin-bottom: 1.5rem;
font-size: 1rem;
color: #666666;
}
.skills {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
margin-top: 2rem;
}
.skill-item {
background: #f5f5f5;
padding: 1rem;
text-align: center;
border: 1px solid #e0e0e0;
}
.skill-item h3 {
color: #000000;
font-size: 1rem;
margin-bottom: 0.5rem;
}
.skill-item p {
color: #666666;
font-size: 0.9rem;
}
/* Contact Section */
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 3rem;
}
.contact-form {
background: #ffffff;
padding: 2rem;
border: 1px solid #e0e0e0;
}
.contact-form h2 {
color: #000000;
margin-bottom: 1.5rem;
font-weight: 300;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #000000;
font-weight: 500;
font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.8rem;
background: #ffffff;
border: 1px solid #e0e0e0;
color: #333333;
font-size: 1rem;
font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #000000;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: #f5f5f5;
border: 1px solid #e0e0e0;
}
.contact-icon {
width: 40px;
height: 40px;
background: #000000;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.2rem;
}
.contact-item h3 {
color: #000000;
font-size: 1rem;
margin-bottom: 0.25rem;
}
.contact-item p {
color: #666666;
font-size: 0.9rem;
}
/* Section Headers */
.section-header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 1px solid #e0e0e0;
}
.section-header h1 {
font-size: 2.5rem;
color: #000000;
font-weight: 300;
margin-bottom: 1rem;
}
.section-header p {
color: #666666;
font-size: 1.1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2rem;
}
.about-content,
.contact-content {
grid-template-columns: 1fr;
}
.grid {
grid-template-columns: 1fr;
}
.section-header h1 {
font-size: 2rem;
}
}
/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.6s ease-out;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="nav-container">
<a href="#" class="logo">Devdath Pradeep Valiya Veetil </a>
<ul class="nav-links">
<li><a href="#home" class="nav-link active">Home</a></li>
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#projects" class="nav-link">Projects</a></li>
<li><a href="#certificates" class="nav-link">Certificates</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
</ul>
</div>
</nav>
<!-- Home Page -->
<div id="home" class="page active">
<div class="container">
<div class="hero fade-in">
<h1>Devdath Pradeep Valiya Veetil</h1>
<p>Engineering Student | Robotics Enthusiast | Game Developer</p>
<a href="#about" class="cta-button">View My Work</a>
</div>
<div class="about-content fade-in">
<div class="about-image">
<!-- CHANGE IMAGE: Replace this div with your profile image -->
<img src="me_photo.jpg" alt="My_photo">
</div>
<div class="about-text">
<h2>Hello</h2>
<p>I'm an engineering student at SRMIST and member of SRM Team Robocon, where we work on building robots for ABU Robocon. My interests lie in robotics, embedded systems, AI, and using technology to solve real-world problems.</p>
<p>This portfolio showcases my journey through various projects and achievements in the field of technology and engineering.</p>
</div>
</div>
</div>
</div>
<!-- About Page -->
<div id="about" class="page">
<div class="container">
<div class="section-header fade-in">
<h1>About</h1>
<p>Engineering student passionate about technology and innovation</p>
</div>
<div class="about-content fade-in">
<div class="about-image">
<!-- CHANGE IMAGE: Replace this div with your about section image -->
<img src="me_photo.jpg" alt="My_photo">
</div>
<div class="about-text">
<h2>My Journey</h2>
<p>I'm an engineering student at SRMIST and member of SRM Team Robocon, where we work on building robots for ABU Robocon. My interests lie in robotics, embedded systems, AI, and using technology to solve real-world problems.</p>
<p>My journey in engineering has been driven by curiosity and a desire to understand how things work. From building simple circuits to complex robotic systems, I've always been fascinated by the intersection of hardware and software.</p>
<p>At SRM Team Robocon, I collaborate with talented peers to design and build robots that compete in the prestigious ABU Robocon competition, where we face challenges that test our engineering skills and creativity.</p>
</div>
</div>
</div>
</div>
<!-- Projects Page -->
<div id="projects" class="page">
<div class="container">
<div class="section-header fade-in">
<h1>Projects</h1>
<p>Selected works and implementations</p>
</div>
<div class="grid fade-in">
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your project 1 image -->
<img src="mediDiagnose.png" alt="Project 1">
</div>
<h3>Smart AI Powered Disease Detection and Classifier</h3>
<p>Developed an intelligent medical diagnosis system that uses machine learning algorithms to detect and classify diseases from medical images and patient data. The system provides accurate diagnostic suggestions to healthcare professionals.</p>
<div class="tech-stack">
<span class="tech-tag">Python</span>
<span class="tech-tag">TensorFlow</span>
<span class="tech-tag">OpenCV</span>
<span class="tech-tag">Scikit-learn</span>
<span class="tech-tag">Flask</span>
</div>
</div>
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your project 2 image -->
<img src="Simulation_3WD.png" alt="Project 2">
</div>
<h3>Embedded 3WD Simulation for Matlab</h3>
<p>I developed an embedded simulation of a 3-Wheel Omni-Directional (3WD) drive robot using MATLAB, focusing on real-time control and kinematic modeling. The system integrates omni-wheel inverse and forward kinematics, allowing precise maneuverability in all directions. Control inputs were simulated via an Xbox controller interface, and the model was built to support embedded code generation using MATLAB Coder, enabling deployment to microcontrollers for real-world applications. This project showcases my skills in embedded systems, robotics simulation, and control systems design.</p>
<div class="tech-stack">
<span class="tech-tag">Matlab</span>
<span class="tech-tag">Embedded C</span>
<span class="tech-tag">Arduino</span>
</div>
</div>
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your project 3 image -->
<img src="animal_cell.jpg" alt="Project 3">
</div>
<h3>Real-time Animal Cell Simulation</h3>
<p>Created an interactive 3D simulation of animal cell structures and processes in real-time. The simulation includes organelle functions, cellular respiration, protein synthesis, and membrane transport mechanisms for educational purposes.</p>
<div class="tech-stack">
<span class="tech-tag">Unity 3D</span>
<span class="tech-tag">C#</span>
<span class="tech-tag">WebGL</span>
<span class="tech-tag">3D Modeling</span>
<span class="tech-tag">Animation</span>
</div>
</div>
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your project 4 image -->
<img src="inventory_management.jpg" alt="Project 4">
</div>
<h3>SAP and Inventory Management System</h3>
<p>Developed a comprehensive warehouse management system integrated with SAP for efficient inventory tracking, order processing, and supply chain management. The system includes barcode scanning, automated reporting, and real-time dashboard.</p>
<div class="tech-stack">
<span class="tech-tag">SAP</span>
<span class="tech-tag">Java</span>
<span class="tech-tag">MySQL</span>
<span class="tech-tag">Spring Boot</span>
<span class="tech-tag">REST API</span>
</div>
</div>
</div>
</div>
</div>
<!-- Certificates Page -->
<div id="certificates" class="page">
<div class="container">
<div class="section-header fade-in">
<h1>Certificates</h1>
<p>Professional certifications and achievements</p>
</div>
<div class="grid fade-in">
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your certificate 1 image -->
<span>Certificate Image to be added</span>
</div>
<h3>Altium PCB Design Workshop</h3>
<p>I served as a core team assistant for the Altium PCB Design Workshop conducted by SRM Team Robocon. My responsibilities included supporting participants with software setup, troubleshooting design issues, and explaining the fundamentals of PCB layout and schematic design in Altium Designer. This experience strengthened my understanding of PCB development workflows and enhanced my ability to communicate technical concepts effectively to peers.</p>
<p><strong>Issued by:</strong> SRM Team Robocon</p>
</div>
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your certificate 2 image -->
<span>Certificate Image to be added</span>
</div>
<h3>TechXCelerate Hackathon:AI-Powered Disease Prediction System</h3>
<p>At the Bits TechXCelerate Hackathon, I was part of a team that developed an AI-powered disease prediction system. Using machine learning models trained on medical symptom datasets, we built a diagnostic web tool that could predict likely conditions based on user-reported symptoms, while prioritizing low-risk outcomes and suggesting precautions. This project deepened my skills in data preprocessing, model evaluation, and deploying AI in healthcare-focused solutions.</p>
<p><strong>Issued by:</strong> BITS Hyderabad</p>
</div>
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your certificate 3 image -->
<span>Certificate Image to be added</span>
</div>
<h3>CodeFest Hackathon: AI-Based Inventory Management System</h3>
<p>During the CodeFest Hackathon, my team and I built an AI-driven Inventory Management System designed to automate stock tracking and restocking alerts. Using predictive analytics and web scraping integration for e-commerce platforms, the system helped users monitor inventory levels and anticipate demand trends. I contributed to both the backend logic and the user interface, and this project gave me practical experience in full-stack development and applying AI to real-world logistics challenges.</p>
<p><strong>Issued by:</strong> SRMIST</p>
</div>
<div class="card">
<div class="card-image">
<!-- CHANGE IMAGE: Replace this div with your certificate 4 image -->
<img src="saylor-certificate.jpg" alt="certificate 1">
</div>
<h3>Data Science with Python</h3>
<p>I completed a comprehensive course in Data Science with Python, covering essential concepts such as data visualization, statistical analysis, machine learning, and working with libraries like NumPy, Pandas, and Scikit-learn. The course included hands-on projects, giving me foundational knowledge in end-to-end data workflows—from data wrangling to model deployment. This certification reinforced my ability to build and evaluate predictive models using Python.</p>
<p><strong>Issued by:</strong> Saylor Academy</p>
</div>
</div>
</div>
</div>
<!-- Contact Page -->
<div id="contact" class="page">
<div class="container">
<div class="section-header fade-in">
<h1>Contact</h1>
<p>Get in touch for collaborations and opportunities</p>
</div>
<div class="contact-content fade-in">
<div class="contact-form">
<h2>Send Message</h2>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="cta-button">Send Message</button>
</form>
</div>
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">@</div>
<div>
<h3>Email</h3>
<p>devdathpradeepvaliyaveetil@gmail.com</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📱</div>
<div>
<h3>Phone</h3>
<p>+91 9372626810</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📍</div>
<div>
<h3>Location</h3>
<p>Mumbai, Maharashtra, India</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">in</div>
<div>
<h3>LinkedIn</h3>
<p>https://www.linkedin.com/in/devdath-valiya-veetil-3056b7323/</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
// Navigation functionality
document.addEventListener('DOMContentLoaded', function() {
const navLinks = document.querySelectorAll('.nav-link');
const pages = document.querySelectorAll('.page');
navLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
// Remove active class from all links and pages
navLinks.forEach(nl => nl.classList.remove('active'));
pages.forEach(page => page.classList.remove('active'));
// Add active class to clicked link
this.classList.add('active');
// Show corresponding page
const targetPage = this.getAttribute('href').substring(1);
document.getElementById(targetPage).classList.add('active');
});
});
// CTA button functionality
document.querySelector('.cta-button').addEventListener('click', function(e) {
e.preventDefault();
navLinks.forEach(nl => nl.classList.remove('active'));
pages.forEach(page => page.classList.remove('active'));
document.querySelector('a[href="#about"]').classList.add('active');
document.getElementById('about').classList.add('active');
});
// Form submission
document.querySelector('form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! I will get back to you soon.');
this.reset();
});
// Smooth animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('fade-in');
}
});
}, observerOptions);
document.querySelectorAll('.card, .hero, .about-content, .skills, .section-header').forEach(el => {
observer.observe(el);
});
});
</script>
</body>
</html>