-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (75 loc) · 3.3 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, intial-scale=1.0" />
<link rel="stylesheet" href="css/style.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>
<!--ABOUT -->
<img class="rover-animate" src="img/rover-removebg.png">
<section class="section-text">
<div class="section-in">
<h2>Team Rudra</h2>
<p>T - Zero seconds! <br> You've arrived at your destination.<br> Welcome to the official Mars Rover team of SRM IST.</p>
</div>
<section class="section-intro">
<canvas id="space"></canvas>
<a href="#" id="warp"></a>
<section class="admin">
<h2>Admin</h2>
<img class="rathinam" src="https://raw.githubusercontent.com/nitinn-nagar/rudra_website/main/img/rathinam_sir.jpeg">
<h1>Dr. A Rathinam</h1>
<h3>Faculty Advisor</h3>
<img class="srm--logo" src="https://raw.githubusercontent.com/nitinn-nagar/rudra_website/main/img/srm.png">
</section>
<!-- <a href="https://srmist.edu.in">
<img class="srm-logo" src="../img/srm.png" alt=""></a> -->
<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>