-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticles.html
108 lines (92 loc) · 4.49 KB
/
articles.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
<!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/articles.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" class="current-page">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">HOME</a>
<a href="./team.html">TEAM</a>
<a href="./articles.html" class="current-page">NEWS</a>
<a href="./projects.html">PROJECTS</a>
<a href="./sponsors.html">SPONSORS</a>
</div>
<div style="background-color: whitesmoke;" class="container">
<div class="container-featured">
<div class="featured-header">Featured</div>
<a target="_blank" href="https://brooklyneagle.com/articles/2023/05/02/robots-ar-and-cyber-everything-at-nyu-tandons-downtown-brooklyn-showcase/" class="featured-photo"></a>
<div class="featured-sidebar">NEWS</div>
<a target="_blank" href="https://brooklyneagle.com/articles/2023/05/02/robots-ar-and-cyber-everything-at-nyu-tandons-downtown-brooklyn-showcase/" class="featured-title">AMIGO: Celebrating Excellence</a>
</div>
<a target="_blank" href="https://engineering.nyu.edu/news/what-do-coney-island-and-mars-have-common-ask-nyu-robotics-design-team" class="article-item">
<div style="background-image: url('../resources/article_photos/coney-island-robotics-design-team.jpg');"></div>
<h2>What do Coney Island and Mars have in common? Ask the NYU Robotics Design Team</h2>
<p>July 20, 2021</p>
</a>
<a target="_blank" href="https://engineering.nyu.edu/news/robots-ar-and-cyber-everything-nyu-tandons-research-excellence-exhibit" class="article-item">
<div style="background-image: url('../resources/article_photos/research-exhibit.png');"></div>
<h2>Robots, AR, and cyber. everything at NYU Tandon's Research Execellence Exhbit</h2>
<p>May 2, 2023</p>
</a>
<a target="_blank" href="https://engineering.nyu.edu/research-innovation/student-research/vertically-integrated-projects/vip-teams/nyu-robotic-design-team" class="article-item">
<div style="background-image: url('../resources/article_photos/rdt-logo.jpg');"></div>
<h2>NYU Robotic Design Team -- Vertically Integrated Projects</h2>
<p></p>
</a>
</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>