-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESCR-Street-Trees.html
148 lines (135 loc) · 4.78 KB
/
ESCR-Street-Trees.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
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Trees Planted as Part of the East Coast Resiliency Project</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌳</text></svg>">
<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=Open+Sans&family=Playfair+Display:wght@500&display=swap"
rel="stylesheet"
/>
<style>
main {
display: flex;
flex-direction: column;
margin: 20px auto;
max-width: 1500px;
color: #444;
padding: 0 70px;
font-family: "Open Sans", sans-serif;
position: relative;
}
@media (max-width: 600px) {
main {
padding: 0 20px;
}
}
h1{
font-family: "Playfair Display", serif;
}
.content{
margin-bottom: 2px;
}
.content p {
margin-top: 0;
border-radius: 5px;
border: 1px solid #c1deeb;
margin: 0 auto;
background: white;
padding: 1rem;
}
section {
width: 100%;
height: 10px;
position: fixed;
}
.pattern {
position: relative;
border-radius: 5px;
background-image: linear-gradient(315deg, #adf6a5 0%, #c5ebc1 74%);
}
.pattern:before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 20px;
background-size: cover;
background-repeat: no-repeat;
}
img{
max-width: 33vw;
}
</style>
</head>
<body>
<main>
<img src="./assets/cc2.jpg" alt="Banner for the New York City Council Member Carlina Rivera">
<h1>Trees Planted as Part of the East Coast Resiliency Project</h1>
<section class="pattern"></section>
<div class="content">
<p>
<span>The</span>
East Coast Resiliency Project (ESCR) represents a once-in-a-lifetime
opportunity to provide our coastal communities with reliable protection
from the rising seas and storm surge that will come with climate change.
Superstorm Sandy, which struck New York City a decade ago, demonstrated
how vulnerable we are to the effects of extreme weather, especially as
some recovery projects are still underway.
</p>
<p>
<span>In</span>
addition to enhancing protection from weather, the project will address
decades of environmental inaction from the government and provide a park
that will be enjoyed by generations to come.
</p>
<p>
<span>In</span>
late June we marked the planting of the 1,000th street tree as part of
the East Side Coastal Resiliency (ESCR) project. As part of project negotiations,
I helped secure a commitment from the City of New York to plant 1,000 new street
trees throughout Community Boards 3 and 6 to enhance the ecological benefits of
ESCR and improve quality of life in the affected neighborhoods. The tree is a
Littleleaf Linden planted at 236 East 3rd Street. A full list of the secured
commitments can be found here:
<a
href = "http://on.nyc.gov/3YedvxD"
target = "_blank"
rel="noopener noreferrer"
>on.nyc.gov/3YedvxD</a
>
</p>
<p>
<span>This</span>
map shows all of the trees that have been planted as
part of the ESCR agreement, which concluded during the Spring 2023 planting season.
</p>
<p>
<span>To</span>
learn more about the East Side Coastal Resiliency project visit:
<a
href="http://www.nyc.gov/site/escr/index.page"
target="_blank"
rel="noopener noreferrer"
>www.nyc.gov/site/escr/index.page</a
>
</p>
</div>
<iframe
id="map"
src="https://betanyc.maps.arcgis.com/apps/instant/basic/index.html?appid=a978477bc4d942ce8e49c4e4798bd890"
width="100%"
height="800px"
frameborder="0"
style="border: 0"
allowfullscreen
>iFrames are not supported on this page.</iframe
>
</main>
</body>
</html>