-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpress.html
96 lines (85 loc) · 4.78 KB
/
press.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>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Press Coverage - AI for Scaling Legal Reform</title>
<link rel="icon" type="image/x-icon" href="static/images/favicon.ico" />
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro" rel="stylesheet" />
<link rel="stylesheet" href="static/css/bulma.min.css" />
<link rel="stylesheet" href="static/css/fontawesome.all.min.css" />
<link rel="stylesheet" href="static/css/index.css" />
<script defer src="static/js/fontawesome.all.min.js"></script>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<strong>AI for Scaling Legal Reform</strong>
</a>
</div>
<div class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="index.html">Home</a>
<a class="navbar-item" href="faq.html">FAQ</a>
<a class="navbar-item is-active" href="press.html">Press</a>
</div>
</div>
</nav>
<section class="section">
<div class="container is-max-desktop">
<h1 class="title is-2 has-text-centered">Press Coverage</h1>
<div class="content">
<div class="press-coverage">
<div class="press-items">
<a href="https://www.sfchronicle.com/bayarea/article/racist-housing-covenant-california-19894639.php" target="_blank" class="press-item">
<img src="static/images/press/sfchronicle.png" alt="SF Chronicle Logo" class="press-logo">
<span class="press-title">San Francisco Chronicle</span>
</a>
<a href="https://abc7news.com/post/stanfords-ai-removes-racist-property-records-santa-clara-county/15438970/" target="_blank" class="press-item">
<img src="static/images/press/abc7.png" alt="ABC7 News Logo" class="press-logo">
<span class="press-title">ABC7 News</span>
</a>
<a href="https://www.kron4.com/news/bay-area/stanford-researchers-map-white-only-properties-in-santa-clara-co-using-ai/" target="_blank" class="press-item">
<img src="static/images/press/kron4.svg" alt="KRON4 Logo" class="press-logo">
<span class="press-title">KRON4</span>
</a>
<a href="https://statescoop.com/stanford-university-santa-clara-county-clerk-racial-covenants-ai/" target="_blank" class="press-item">
<img src="static/images/press/statescoop.webp" alt="StateScoop Logo" class="press-logo">
<span class="press-title">StateScoop</span>
</a>
<a href="https://www.cbsnews.com/sanfrancisco/news/ai-used-to-uncover-racial-covenants-in-santa-clara-county-property-records/" target="_blank" class="press-item">
<img src="static/images/press/cbsnews.svg" alt="CBS News Logo" class="press-logo">
<span class="press-title">CBS News</span>
</a>
<a href="https://news.bloomberglaw.com/artificial-intelligence/ai-seeks-out-racist-language-in-property-deeds-for-termination" target="_blank" class="press-item">
<img src="static/images/press/bloomberglaw.png" alt="Bloomberg Law Logo" class="press-logo">
<span class="press-title">Bloomberg Law</span>
</a>
<a href="https://www.kqed.org/news/12009822/stanford-ai-model-helps-locate-racist-deeds-in-santa-clara-county" target="_blank" class="press-item">
<img src="static/images/press/kqed.png" alt="KQED Logo" class="press-logo">
<span class="press-title">KQED</span>
</a>
<a href="https://www.ktvu.com/video/1557188" target="_blank" class="press-item">
<img src="static/images/press/ktvu.svg" alt="KTVU Logo" class="press-logo">
<span class="press-title">KTVU FOX 2</span>
</a>
<a href="https://stanforddaily.com/2024/11/04/stanford-map-racial-covenants-santa-clara-county/" target="_blank" class="press-item">
<img src="static/images/press/stanforddaily.webp" alt="Stanford Daily Logo" class="press-logo">
<span class="press-title">Stanford Daily</span>
</a>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p><a href="index.html">Home</a> | <a href="faq.html">FAQ</a> | <a href="press.html">Press</a></p>
<p>© 2024 Stanford RegLab. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>