-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (118 loc) · 5.65 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
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>NYU Robotic Design Team</title>
<link rel="icon" type="image/x-icon" href="resources/rdt-logo-black.png" style="height:50%;">
<link rel="stylesheet" href="./styles/shared.css">
<link rel="stylesheet" href="./styles/home.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js" defer></script>
<script src="./scripts/menu_handler.js" defer></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
</style>
</head>
<body>
<header>
<div class="container container-nav">
<img src="resources/rdt-logo-white.png" class="site-logo">
<nav>
<ul>
<li><a href="#" class="current-page">Home</a></li>
<li><a href="./team.html">Team</a></li>
<li><a href="./articles.html">News</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./sponsors.html">Sponsors</a></li>
</ul>
</nav>
<button class="hamburger">
<div class="bar"></div>
</button>
</div> <!-- close nav container -->
</header>
<div class="mobile-menu">
<a href="./index.html" class="current-page">HOME</a>
<a href="./team.html">TEAM</a>
<a href="./articles.html">NEWS</a>
<a href="./projects.html">PROJECTS</a>
<a href="./sponsors.html">SPONSORS</a>
</div>
<div class="container-fill home-splash bg-amigo-pic-01">
<b><span>NYU</span> ROBOTIC DESIGN TEAM</b>
</div>
<div class="container">
<p class="tag-line">From Campus to the Cosmos: </br> Exploring Lunar Boundaries, One Robot at a Time.</p>
<!-- Comment the following element out when the team is NOT recruiting -->
<!-- <div class="application">
<p>We're recruiting until April 12th! Apply now!</p>
<p>Decisions will be returned by April 30th</p>
<a href="https://nyu.qualtrics.com/jfe/form/SV_aYiVtVXWzCvvGn4">APPLY</a>
</div> -->
</div>
<div class="container container-directory" style="margin-bottom: 50px;">
<a class="directory-item" href="./articles.html">
<div class="bg-amigo-pic-01">NEWS</div>
</a>
<a class="directory-item" href="./team.html">
<div class="bg-team-pic-01">TEAM</div>
</a>
<a class="directory-item" href="./projects.html">
<div class="bg-arena-setup">PROJECTS</div>
</a>
</div>
<div class="container-fill" style="background-color: var(--rdt-purple); color: white;">
<section class="container container-section" style="margin-block: 0;">
<img class="section-image" src="./resources/old-team-pic.JPG">
<div class="section-content">
<div class="section-title">WHO WE ARE</div>
<div class="section-text">The NYU Robotic Design Team is a collegiate organization committed to designing & engineering an extraterrestrial mining robot for NASA's annual Lunabotics Competition. Each year, we integrate mechanical, electrical, and software disciplines to create a new robot.
</div>
</div>
</section>
</div>
<section class="container container-section" style="margin-block: 0;">
<div class="section-content">
<div class="section-title">OUR MISSION</div>
<div class="section-text">Our mission is to create innovative robots for the advancement of the field, while having a positive impact on our school and community.</div>
</div>
<img class="section-image" src="./resources/rdt-logo-black.png" style="object-fit: contain;">
</section>
<div class="container-fill" style="background-color: var(--rdt-purple); color: white;">
<section class="container container-section" style="margin-block: 0;">
<img class="section-image" src="./resources/amigo-pic-01.jpg" style="object-fit: cover; object-position: right;">
<div class="section-content">
<div class="section-title">The Competition</div>
<div class="section-text">NASA's Lunabotics Competition is an annual showcase of problem solving and engineering to promote the research of lunar excavation and construction. We enthusiastically participate each year, engaging in direct competition with other collegiate teams from across the nation.</div>
</div>
</section>
</div>
<footer>
<div class="container container-nav">
<img src="resources/tandon_long_white.png" class="tandon-logo">
</div>
<div class="container container-footer">
<!-- social media -->
<div>
<!-- linkedin -->
<a href="https://www.linkedin.com/company/nyu-robotic-design-team" >
<img src="resources/icons/linkedin-icon.png" class="footer-icon">
</a>
<!-- insta -->
<a href="https://www.instagram.com/nyurdt/">
<img src="resources/icons/insta-icon.png" class="footer-icon">
</a>
<!-- email -->
<a href="mailto:[email protected]">
<img src="resources/icons/email-icon.png" class="footer-icon">
</a>
</div>
<!-- lines -->
<div style="font-size: 15px;">
Unless otherwise noted, all content copyright NYU Robotic Design Team. All rights reserved.
</div>
</div>
</footer>
</body>
</html>