-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
75 lines (64 loc) · 3.03 KB
/
about.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
<!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,intial-scale=1.0" />
<link rel="stylesheet" href="css/about.css" />
<script src="js/script.js" defer></script>
<title>Team Rudra</title>
</head>
<body>
<div id="overlay"></div>
<div id="mobile-menu" class="mobile-main-menu">
<ul>
<li class="mobile-only"><a href="about.html">About Us</a></li>
<li class="mobile-only"><a href="achievements.html">Achievements</a></li>
<li class="mobile-only"><a href="gallery.html">Gallery</a></li>
<li class="mobile-only"><a href="team.html">Team</a></li>
<li class="mobile-only"><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<header class="main-header">
<div class="logo">
<a href="index.html">
<img src="img/logo.png" alt="Team Rudra" />
</a>
</div>
<nav class="desktop-main-menu">
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="achievements.html">Achievements</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<!-- hamburger -->
<button id="menu-btn" class="hamburger" type="button">
<span class="hamburger-top"></span>
<span class="hamburger-middle"></span>
<span class="hamburger-bottom"></span>
</button>
<canvas id="space"></canvas>
<a href="#" id="warp"></a>
<div class="section-inner-center">
<h4>About Team RUDRA</h4>
<p>RUDRA is the official team of SRM IST taking part in University Rover Challenge organised by Mars Society since 2013. The annual competition is held at the Mars Desert Research Station (MDRS), Martian Analog Site, near Hanksville, Utah, USA. The
team has been successfully operational for the last 7 years and has maintained its consistency in the competition. Our Team consists of 25-30 undergraduate students of every year from various engineering streams, working in different domains.
The fun part - R&D, is the soul and essence of Team Rudra. Brainstorming discussions are always welcome for giving birth to new ideas.</p>
</div>
<footer>
<ul>
<li>RUDRA © 2022</li>
<li><a href="https://instagram.com/team_rudra">Instagram</a></li>
<li><a href="https://twitter.com/srmrudra">Twitter</a></li>
<li><a href="https://wa.me/917781996283">Whatsapp</a></li>
<li><a href="https://www.facebook.com/srmteamrudra/">Facebook</a></li>
<li><a href="https://www.youtube.com/c/RUDRASRMMARSROVER">YouTube</a></li>
<li><a href="https://www.linkedin.com/company/srmrudra/mycompany/">LinkedIn</a></li>
</ul>
</footer>
</body>
</html>