-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (120 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Robotics Club</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: black;
color: white;
overflow-x: hidden;
}
header {
background-color: white;
color: #fff;
padding: 1rem 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
h2 {
color: #f9f3f3;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 1em;
}
img {
width: 50%;
height: auto;
}
.logo img {
height: 200px;
margin-bottom: 1px;
transition: transform 0.3s ease-in-out;
}
.logo img:hover{
transform: scale(1.1);
}
.container {
padding: 20px;
}
.profile {
margin-bottom: 40px;
}
.profile img {
border-radius: 50%;
width: 150px;
height: 150px;
transition: transform 0.3s ease-in-out;
}
.profile img:hover{
transform: scale(1.1);
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="Screenshot%202024-05-23%20232750.png" alt="logo">
</div>
</header>
<div class="container">
<div class="profile">
<h2>SECRETARY 2024-2025</h2>
<img src="Profile.jpg" alt="Profile Picture">
<p>Vaibhav Chauhan</p>
</div>
<h2>This year's summer projects</h2>
<ul>
<li>
<img src="Project1.jpg" alt="Project 1">
<p>A two-wheeled self-balancing robot that
achieves perfect equilibrium, using technology and
precision engineering.
The robot has locomotion capabilities while maintaining
its balance similar to humans.
</p>
</li>
<li>
<img src="Project2.jpg" alt="Project 2">
<p>To develop and validate the communication
and control system for remotely operating the
Rover over extensive distances with precise
movement and efficient data transfer.
</p>
</li>
<li>
<img src="Project3.jpg" alt="Project 3">
<p>To design and stimulate the system of autonomous
navigation for the mars rover
which mainly covers up obstacle detection and
classification, obstacle avoidance and path
planning to a specific location.
</p>
</li>
<li>
<img src="Project4.jpg" alt="Project 4">
<p>We will firstly be working on the controls of motors
using microcontrollers.
Then jump to Robotics with use of inverse
Kinematics for arm movement.
In the end: The arm will be able to pick and
place a randomly placed object autonomously.
</p>
</li>
</ul>
</body>
</html>