-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticles.html
96 lines (67 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Articles - Neil Mehta</title>
<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=Inconsolata:wght@300&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="https://twitter.com/neilmhta">Twitter/X</a></li>
</ul>
</nav>
</header>
<section id="articles">
<div class="portfolio-wrapper">
<div class="portfolio-content">
<a href="https://gothamist.com/news/inside-a-brooklyn-housing-complex-where-a-third-of-tenants-face-eviction">
<img src="https://cms.prod.nypr.digital/images/340162/fill-2100x1401|format-webp|webpquality-55" alt="Flatbush Gardens">
<h3>Inside a Brooklyn housing complex, where a third of tenants face eviction</h3>
<p>Aug 11, 2023</p>
</a>
</div>
<div class="portfolio-content">
<a href="https://gothamist.com/news/nycs-eviction-hotspots-tracking-the-10k-removals-since-moratorium-ended">
<img src="https://cms.prod.nypr.digital/images/340144/fill-700x467|format-webp|webpquality-70" width="700" height="467" alt="Sunset falls on Ebbet's Field, a terra cotta colored housing complex in Brooklyn.">
<h3>NYC's eviction hotspots: Tracking the 10K removals since moratorium ended</h3>
<p>Aug 10, 2023</p>
</a>
</div>
<div class="portfolio-content">
<a href="https://gothamist.com/news/nyc-broker-fees-are-skyrocketing-the-city-council-is-trying-to-put-the-fees-on-landlords">
<img src="https://cms.prod.nypr.digital/images/339435/fill-700x467|format-webp|webpquality-70" alt="Chi Osse">
<h3>NYC broker fees are skyrocketing. The City Council is trying to put the fees on landlords.</h3>
<p>Jun 30, 2023</p>
</a>
</div>
<div class="portfolio-content">
<a href="https://projects.browndailyherald.com/2023/03/05/thayer-street-history/">
<img src="https://projects.browndailyherald.com/2023/03/05/thayer-street-history/_app/immutable/assets/thayer_test_1.e687f01b.jpeg" alt="Thayer Street">
<h3>The evolution of Thayer Street</h3>
<p>April 24, 2023</p>
</a>
</div>
<div class="portfolio-content">
<a href="https://projects.browndailyherald.com/2022/12/13/brown-property-footprint/">
<img src="https://s3.amazonaws.com/snwceomedia/bdh/81950206-dddf-448e-bae2-7c76f6b23caa.sized-1000x1000.gif?w=1500&ar=16x9&fit=crop&crop=faces&facepad=3&auto=format" alt="Brown's Property Holdings">
<h3>How Brown’s campus and property holdings have changed, from 1770 to today</h3>
<p>Dec 13, 2022</p>
</a>
</div>
<!-- Add more articles here -->
</div>
</section>
<footer>
<p>© 2023 Neil Mehta. All rights reserved.</p>
</footer>
</body>
</html>