-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (76 loc) · 3.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parikshit Padole - Robotics and AI</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<div class="navbar">
<h1>Parikshit Padole</h1>
<!-- Smaller Hamburger Menu Button -->
<button class="button-three" id="mobile-menu" aria-controls="primary-navigation" aria-expanded="false">
<svg stroke="var(--button-color)" fill="none" class="hamburger" viewBox="-10 -10 120 120" width="40" height="40">
<path class="line" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"
d="m 20 40 h 60 a 1 1 0 0 1 0 20 h -60 a 1 1 0 0 1 0 -40 h 30 v 70"></path>
</svg>
</button>
<nav>
<ul id="menu-items">
<li><a href="#about">About</a></li>
<li><a href="Projects/projectlist.html">Projects</a></li>
<li><a href="https://blogs.imperial.ac.uk/parikshit/">Blogs</a></li>
<li><a href="images/Resume - Parikshit.pdf" download="Parikshit_Padole_Resume.pdf">Resume</a></li> <!-- Resume Download -->
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<p class="subtitle">Robotics and AI</p>
</header>
<section id="about">
<h2>About</h2>
<img src="images/IMG_20240824_221302_916.jpg" alt="Profile Image of Parikshit Padole" class="profile-image">
<p>
<span id="typing-effect"></span>
</p>
<script src="typingeffect.js"></script>
</section>
<section id="projects">
<h2>Projects</h2>
<a href="Projects/project1.html" class="project-link">
<div class="project">
<h3>Satellite Tracking and Trajectory Prediction Application</h3>
<p>Developed an innovative web application to enhance Space Situational Awareness (SSA) by providing real-time
satellite tracking and trajectory prediction for Earth’s orbit. The application leverages open-source Two-Line Element (TLE) data
and integrates both traditional mathematical models and an experimental Long Short-Term Memory (LSTM) machine learning model
for precise satellite trajectory prediction.</p>
</div>
</a>
<a href="Projects/project2.html" class="project-link">
<div class="project">
<h3>Earth Rock Classifier</h3>
<p>Developed a RaspberryPi 4B based ML model that identifies 35 different types of rocks. This project was
developed to understand and learn about image processing and learn how to integrate Machine Learning in Embedded systems.</p>
</div>
</a>
</section>
<section id="contact">
<h2>Contact</h2>
<p>If you'd like to collaborate or just want to say hi, feel free to contact me!</p>
<div class="contact-info">
<ul>
<li><i class="fas fa-envelope"></i> Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li><i class="fab fa-github"></i> GitHub: <a href="https://github.com/Lobster1911" target="_blank">parikshit</a></li>
<li><i class="fab fa-instagram"></i> Instagram: <a href="https://instagram.com/parikshit_1911" target="_blank">parikshit_1911</a></li>
</ul>
</div>
</section>
<footer>
<p>© 2024 Parikshit Padole. All Rights Reserved.</p>
</footer>
<script src="menu.js"> </script>
</body>
</html>