-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsponsors.html
138 lines (126 loc) · 5.4 KB
/
sponsors.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
137
138
<!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/sponsors.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="./index.html">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" class="current-page">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">HOME</a>
<a href="./team.html">TEAM</a>
<a href="./articles.html">NEWS</a>
<a href="./projects.html">PROJECTS</a>
<a href="./sponsors.html" class="current-page">SPONSORS</a>
</div>
<div style="background-color: whitesmoke; display: flex; justify-content: center; align-items: center; flex-direction: column;" class="container sponsor-list">
<img src="./resources/rdt-logo-black.png" style="max-width: 250px; margin-top: 20px;" >
<h1>Featured Sponsors</h1>
<div class="sponsor-item">
<img src="resources/rising-violets-logo.gif">
<div>
<h1>CMT Hogan</h1>
<p>Thank you to CMT Hogan for contributing to our project for the 2024 season!</p>
</div>
</div>
<div class="sponsor-item">
<img src="resources/nyu-logo.png">
<div>
<h1>NYU VIP Department</h1>
<p>Thank you to the NYU VIP Department for contributing to our project for the 2024 season!</p>
</div>
</div>
<div class="sponsor-item">
<img src="resources/nyu-logo.png">
<div>
<h1>NYU MAE Department</h1>
<p>Thank you to the NYU MAE Department for contributing to our project for the 2024 season!</p>
</div>
</div>
<div class="sponsor-item">
<img src="resources/nyu-logo.png">
<div>
<h1>NYU ECE Department</h1>
<p>Thank you to the NYU ECE Department for contributing to our project for the 2024 season!</p>
</div>
</div>
</div>
<div class="container">
</div>
<h1 style="margin: auto; padding:0; text-align: center;">Get in touch!</h1>
<div class="container form-container">
<div >
<img src="/resources/all-team-pic.JPG" class="form-image">
</div>
<form id="contact-form" target="_blank" action="https://formsubmit.co/[email protected]" method="POST">
<div class="form-row form-name">
<label class="form-item" for="firstname">First Name</label>
<label class="form-item" for="lastname">Last Name</label>
<input type="text" name="firstname" class="form-item" required>
<input type="text" name="lastname"class="form-item" required>
</div>
<div class="form-row">
<label class="form-item" for="email">Email Address</label>
<input type="email" name="email" autocomplete="email" required>
</div>
<div class="form-row">
<label class="form-item" for="message">Message</label>
<textarea class="form-item" name="message" placeholder="Tell us about you" required></textarea>
</div>
<button type="submit" onclick=submitForm()>Send</button>
</form>
</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>