-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.92 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
<!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">
<link rel="stylesheet" href="style.css">
<title>pratyakshkumar</title>
</head>
<body>
<section>
<div class="side" id="side1">
<video src="drdo.mov" type="video/mov" autoplay loop muted></video>
</div>
<div class="side" id="side2">
<video src="drdo.mov" type="video/mov" autoplay loop muted></video>
</div>
</section>
<div class="content">
<h2>Pratyaksh Kumar</h2>
<p>Hi there! I'm an aspiring mechanical engineer who loves finding patterns and connecting dots: be it ideas from different industries, people from different backgrounds and teams, or applications from different organizations. I have strong technical skills, particularly in solidworks, and an academic background in engineering.
I solve problems in creative ways. At BIT MESRA, where I am completing my 3rd year in the College of Engineering, I have learned the importance of applying classical strategies to modern-day projects.
Concentrations in mechanical and electrical engineering provide a broad knowledge of engineering concepts
Experience at TEAM ASHWA RACING as a member taught me how to apply mechanical engineering concepts to automated systems in adventure sports and competitive racing.
Passion for innovation, prototyping, and high-quality manufacturing </p>
</div>
<script>
let side1 = document.getElementById('side1');
let side2 = document.getElementById('side2');
window.addEventListener('scroll', function(){
side1.style.left = -window.pageYOffset+'px';
side2.style.left = window.pageYOffset+'px';
})
</script>
</body>
</html>