-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (137 loc) · 4.89 KB
/
index.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>USIPS</title>
<link rel="stylesheet" href="/main.css?v=2025-02-13-23-29">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<header id="main-header">
<div class="container">
<a id="logo" href="/">
<img src="/image/logo.small.png" alt="USIPS" class="logo-img" />
<span class="logo-text">USIPS</span>
</a>
<nav id="main-nav">
<ul>
<li class="hide-mobile">
<a href="/us"><span>About Us</span></a>
<nav class="submenu">
<ul>
<li>
<a href="/us/board"><span>Board of Directors</span></a>
</li>
<li>
<a href="/us/contact"><span>Contact Us</span></a>
</li>
<li>
<a href="/us/subscribe"><span>Newsletter</span></a>
</li>
</ul>
</li>
<li class="hide-mobile">
<a href="/issues"><span>Issues</span></a>
<nav class="submenu">
<ul>
<li>
<a href="/issues/consumer-privacy"><span>Consumer Privacy</span></a>
</li>
<li>
<a href="/issues/creativity-and-expression"><span>Creativity and Expression</span></a>
</li>
<li>
<a href="/issues/fair-access-to-financial-services"><span>Fair Access to Financial Services</span></a>
</li>
<li>
<a href="/issues/impartial-internet-service"><span>Impartial Internet Service</span></a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</header>
<main>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<div class="hero-logo">
<img src="/image/logo.large.png" alt="USIPS" class="hero-logo-img" />
</div>
<div class="hero-text">
<h1>
<span class="us">United States</span>
<span class="rest">
Internet<br>
Preservation<br>
Society
</span>
</h1>
<p class="hero-subtitle">Promoting a better Internet for all.</p>
</div>
</div>
</div>
</section>
<!-- Featured Issues Section -->
<section class="featured-issues">
<div class="container">
<h2 class="section-title">Coming Soon</h2>
<p>Please follow <a href="https://x.com/usipsorg">@usipsorg</a> on 𝕏 for information on our launch.</p>
</div>
</section>
<section class="newsletter">
<div class="container">
<h2 class="section-title">Newsletter</h2>
<p>Subscribe to the Newsletter for updates as we launch.</p>
<script charset="utf-8" type="text/javascript" src="//js-na2.hsforms.net/forms/embed/v2.js"></script>
<script>
hbspt.forms.create({
portalId: "241956451",
formId: "17726b48-6edb-417c-bafd-ae1991dda95a",
region: "na2"
});
</script>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<div class="footer-grid">
<div class="footer-section">
<h3>Navigation</h3>
<ul class="footer-nav">
<li><a href="/us" class="footer-link">About Us</a></li>
<li><a href="/issues" class="footer-link">Issues</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect</h3>
<ul class="social-links">
<li><a href="https://github.com/usips">GitHub</a></li>
<li><a href="https://x.com/usipsorg">𝕏</a></li>
</ul>
</div>
<div class="footer-section">
<h3>About</h3>
<p>The U.S. Internet Preservation Society is a 501(c)(4) nonprofit organization dedicated to preserving the Internet, restoring privacy, and fighting against censorship.</p>
</div>
</div>
</div>
</footer>
<footer class="legal-footer">
<div class="container">
<p>Logo © 2025 United States Internet Preservation Society.</p>
<p>Articles released under the CC0 license.</p>
<p class="build-info">Build: 2025-02-13-23-29</p>
</div>
</footer>
<!-- TODO: Add JS? -->
<!-- <script src="/js/main.js?v=2025-02-13-23-29"></script> -->
</body>
</html>