forked from ArianaHernandez/where-its-at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublic-programs.html
128 lines (120 loc) · 4.1 KB
/
public-programs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<title>Public Programs</title>
<!-- Meta tags for SEO and social sharing -->
<link rel="canonical" href="https://glitch-hello-website.glitch.me/" />
<meta
name="description"
content=" A Site in which art resources are located"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&family=Sedgwick+Ave+Display&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
<script src="/script.js" defer></script>
</head>
<body>
<div id="navigation">
<div id="left">
<a href="https://where-its-at.glitch.me/experiences.html"
>Where It's At</a
>
</div>
<ul id="right">
<li>
<a href="https://where-its-at.glitch.me/public-programs.html"
>Public Programs</a
>
</li>
<li>
<a href="https://where-its-at.glitch.me/community-art.html"
>Community Art</a
>
</li>
<li>
<a href="https://where-its-at.glitch.me/contributions.html"
>Contributions</a
>
</li>
<li><a href="https://where-its-at.glitch.me/map.html">Map</a></li>
<li><a href="https://where-its-at.glitch.me">Search Again</a></li>
</ul>
</div>
<div class="wrapper">
<div class="content" role="main">
<h1 class="header">Public Programs</h1>
<h2>Free or Reduced Admission Programs</h2>
<a href="https://www.culturepass.nyc/">Culture Pass</a>
<p style="text-align:center;">
Anyone with a
<a href="https://www.nypl.org/library-card/new"
>New York Public Library Card</a
>
can request a Culture Pass that grants free admission to dozens of NYC
museums, public gardens, cultural institutions, and more.
</p>
<a href="https://museums4all.org/for-visitors/">SNAP Benefits</a>
<p style="text-align:center;">
Those recieving public assistance(SNAP Benefits) may recieve free or
discounted admission to select museums.
</p>
<hr />
<h2>Free Classes and Workshops</h2>
<style>
a {
color: #518BB;
}
hr {
border-style: solid;
color: #94C9A9;
overflow: visible;
text-align: center;
height: 1px;
width: 100%;
}
</style>
<a href="https://www.moma.org/research-and-learning/classes"
>MoMA Courses</a
>
<p style="text-align:center; ">
Online courses created and hosted by the Museum of Modern Art that
explores fine arts, art history, and the pieces displayed in the
MoMA's collection.
</p>
<a href="https://www.nypl.org/events/classes/calendar">NYPL Courses</a>
<p style="text-align:center; ">
The New York Public Library offeres thousands of course of various
topics for all ages.
</p>
<hr />
<h2>Youth and Teen Programs</h2>
<a
href="https://www.yasepnetwork.org/theatrical-workforce-development-program/"
>Youth Theater</a
>
<p style="text-align:center;">
The Young Adult Sectoral Employment Project mentors disadvantge youth
to pursue a career in theater.
</p>
<hr />
<h2>Grants and Awards</h2>
<a
href="https://www.nyfa.org/awards-grants/nyc-womens-fund-for-media-music-and-theatre/
"
>NYFA Awards</a
>
<p style="text-align:center;">
Financial aid awarded for media, music, and theater projects created
by, led, or gear towards all who identify as a woman
</p>
</div>
</div>
</body>
</html>