This repository was archived by the owner on Jun 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtracks.html
100 lines (91 loc) · 6.09 KB
/
tracks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property="og:title" content="HackNYU 2018 Tracks" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://hacknyu.org/tracks.html" />
<meta property="og:image" content="images/open-graph-logo.png" />
<title>HackNYU</title>
<meta name="description" content="">
<link rel="stylesheet" href="stylesheets/style.css">
<link rel="icon" href="favicon.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-43028228-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-43028228-4');
</script>
</head>
<body>
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000" href="https://mlh.io/seasons/na-2018/events?utm_source=na-2018&utm_medium=TrustBadge&utm_campaign=na-2018&utm_content=white"
target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2018/white.svg" alt="Major League Hacking 2017 Hackathon Season" style="width:100%"></a>
<nav id="navbar">
<a id="menu-toggle" style="height: 30.5px; font-size: 24.5px; padding: .5em; margin-left: 20px;" onclick="openNav()">☰</a>
<ul class="top-ul">
<li class="top-li"><a href="index.html">HackNYU</a></li>
<li class="top-li"><a href="dayof.html">Day of</a></li>
<li class="top-li"><a href="schedule.html">Schedule</a></li>
<li class="top-li"><a href="about.html">Learn More</a></li>
<li class="top-li"><a href="tracks.html">Tracks</a></li>
<li class="top-li"><a href="sponsor.html">Sponsor</a></li>
</ul>
<ul id="side-nav">
<a href="javascript:void(0)" onclick="closeNav()" style="height: 5px; text-align: right; font-size: 21px; margin:.5em; padding: 1em;; margin-left: 80%; width: 10px;">×</a>
<li class="side-li"><a href="index.html">HackNYU</a></li>
<li class="side-li"><a href="dayof.html">Day of</a></li>
<li class="side-li"><a href="schedule.html">Schedule</a></li>
<li class="side-li"><a href="about.html">Learn More</a></li>
<li class="side-li"><a href="tracks.html">Tracks</a></li>
<li class="side-li"><a href="sponsor.html">Sponsor</a></li>
</ul>
</nav>
<div id="content">
<section class="first-section page-section">
<div class="container">
<h1>Tracks</h1>
<img class="track-logo" src="images/tracks/Accessibility.png">
<h2>Accessibility & Assistive Technology</h2>
<p>
This track is meant to yield projects that are interdisciplinary in nature. Teams will draw from end-user insights and needs, as well as the domains of occupational therapy, medicine, and engineering. This track is suitable for teams dedicated to the development of adaptive and assistive tech to increase accessibility for people with a diverse set of challenges. Teams should look into creating inclusive systems, designing human-centered projects, and furthering intellectual and applied practices in the area of access and ability.
</p>
<img class="track-logo" src="images/tracks/Sustainability.png">
<h2>Sustainability & Social Impact</h2>
<p>
This track is for hacks that promote social or environmental good. This can be anything from a hack that helps determine water usage through audio analysis or a website that can help find eco friendly clothing. What’s important is that the hack actively help people, whether as a community or as a whole. Example problems include: How can we track emission data within cities? Are there ways to make it more relevant to daily life? Is there a way to explain the effects of global warming in a more clear, comprehensible and nuanced way to the general public
</p>
<img class="track-logo" src="images/tracks/Health.png">
<h2>Healthcare</h2>
<p>
This track is an intersection of finding creative solutions, building empathy, and developing transformative technologies that enable universal health for millions around the world. With the goal of bringing impactful change to practice and distribution of medicine, this track focuses on making healthcare both accessible and preventative. This track is suitable for teams dedicated to improving technologies in illness diagnosis, global health literacy, patient compliance, and information storage.
</p>
<img class="track-logo" src="images/tracks/Education.png">
<h2>Education Technology</h2>
<p>
This track brings together the brightest minds in students, app developers, educators, and academic leaders to exchange ideas and build connections between the education sector and emerging technologies at NYU and its partners. This track is suitable for teams working on solving real problems and challenges in the classroom, creating apps that have a substantial impact on fostering a more effective and stimulating learning environment, or looking to connect with people from the worlds of education, technology, and the fusion of the two.
</p>
</div>
</section>
</div>
<footer id="copyright-footer">
<ul id="social-media">
<li><a href="https://www.facebook.com/hacknyu/"><i class="fa fa-facebook-square fa-2x"></i></a></li>
<li><a href="https://twitter.com/hacknyu?lang=en"><i class="fa fa-twitter-square fa-2x"></i></a></li>
<li><a href="https://www.instagram.com/hacknyu/"><i class="fa fa-instagram fa-2x"></i></a></li>
<li><a href="snap.html"><i class="fa fa-snapchat fa-2x"></i></a></li>
</ul>
© Copyright HackNYU 2018
</footer>
<script>
function openNav() {
document.getElementById("side-nav").style.width = "70vw";
}
function closeNav() {
document.getElementById("side-nav").style.width = "0";
}
</script>
</body>
</html>