-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdiskernet.html
More file actions
319 lines (313 loc) · 9.27 KB
/
diskernet.html
File metadata and controls
319 lines (313 loc) · 9.27 KB
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="DownloadNet: Archive your web browsing offline. Secure, private, and searchable. Get started today.">
<meta name="keywords" content="offline web archiving, secure browsing, local internet archive, privacy-first browsing, full-text search">
<link rel="icon" type="image/png" href="dnlogo.png">
<link rel="canonical" href="https://dosaygo.com/downloadnet.html">
<title>DownloadNet | Offline Web Archiving Made Simple</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: #e6e6f0;
color: #2a2a2a;
line-height: 1.7;
overflow-x: hidden;
}
nav {
background: #2b1e5e;
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
nav img {
width: 40px;
height: 40px;
}
nav h1 {
color: #fff;
font-size: 1.7rem;
margin-left: 1rem;
display: inline;
font-weight: 600;
}
nav ul {
list-style: none;
display: flex;
gap: 2.5rem;
}
nav ul li a {
color: #d9e1e8;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #ffd700;
}
nav > div {
display: flex;
align-items: center;
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
background: #2b1e5e;
min-width: 200px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 6px;
top: 100%;
left: 0;
}
.dropdown-content a {
color: #d9e1e8;
padding: 12px 16px;
display: block;
text-decoration: none;
}
.dropdown-content a:hover {
background: #3e2e8b;
color: #ffd700;
}
.dropdown:hover .dropdown-content {
display: block;
}
header {
background: linear-gradient(135deg, #2b1e5e 30%, #5a4b9e 100%);
color: #fff;
text-align: center;
padding: 7rem 3rem 5rem;
margin-top: 70px;
}
header h1 {
font-size: 2.9rem;
margin-bottom: 0.75rem;
font-weight: 700;
letter-spacing: 0.5px;
}
header h2 {
font-size: 1.5rem;
font-weight: 300;
opacity: 0.9;
margin-bottom: 2.5rem;
}
.cta-button {
display: inline-block;
background: #ffd700;
color: #2b1e5e;
padding: 1rem 2.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
margin: 0.5rem;
transition: background 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
background: #ffeb3b;
transform: translateY(-2px);
}
.secondary-cta {
background: transparent;
color: #fff;
border: 2px solid #fff;
}
.secondary-cta:hover {
background: rgba(255, 255, 255, 0.1);
border-color: #ffd700;
transform: translateY(-2px);
}
section {
padding: 5rem 3rem;
text-align: center;
}
#intro, #purchase, #features, #community {
background: #fff;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
margin: 3rem auto;
max-width: 950px;
padding: 3.5rem;
border-radius: 10px;
}
#intro h2, #purchase h2, #features h2, #community h2 {
color: #2b1e5e;
font-size: 2.3rem;
margin-bottom: 1.75rem;
font-weight: 600;
}
#intro p, #purchase p, #features p, #community p {
font-size: 1.1rem;
margin-bottom: 1.5rem;
color: #4a4a4a;
}
#intro a, #purchase a, #features a, #community a {
color: #5a4b9e;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
#intro a:hover, #purchase a:hover, #features a:hover, #community a:hover {
color: #ffd700;
}
#features {
background: #e6e6f0;
margin: 0;
box-shadow: none;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.card {
background: #fff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.card h3 {
color: #2b1e5e;
margin-bottom: 0.8rem;
font-size: 1.35rem;
font-weight: 600;
}
.card p {
color: #5a5a5a;
font-size: 1rem;
}
footer {
background: #2b1e5e;
color: #d9e1e8;
padding: 3rem 2rem;
text-align: center;
}
.footer-links {
margin-bottom: 1.5rem;
}
.footer-links a {
color: #ffd700;
text-decoration: none;
margin: 0 1.5rem;
font-weight: 500;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #fff;
}
@media screen and (max-width: 600px) {
nav {
padding: 1rem;
overflow-x: auto;
}
nav > div {
padding-right: 1.618em;
}
header {
padding: 5rem 1rem 3rem;
}
section {
padding: 3rem 1rem;
}
#intro, #purchase, #features, #community {
padding: 2rem;
}
.dropdown-content {
min-width: 150px;
}
}
</style>
</head>
<body>
<nav>
<div>
<img src="dnlogo.png" alt="DownloadNet Logo">
<h1>DownloadNet</h1>
</div>
<ul>
<li><a href="#purchase">Purchase</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#community">Community</a></li>
<li><a href="mailto:support@dosaygo.com?subject=DownloadNet%20Inquiry">Contact</a></li>
</ul>
</nav>
<header>
<h1>DownloadNet: Your Offline Web Archive</h1>
<h2>Also known as DiskerNet or dn—archive your browsing, search locally, and stay private.</h2>
<a href="#purchase" class="cta-button">Get Started Now</a>
<a href="https://github.com/dosyago/DownloadNet" class="cta-button secondary-cta">Explore on GitHub</a>
</header>
<section id="intro">
<h2>Archive the Web, Offline and Private</h2>
<p>DownloadNet (also known as DiskerNet or dn) lets you save your web browsing locally, creating a searchable, offline archive. Perfect for researchers, privacy enthusiasts, and anyone who wants to revisit web pages without an internet connection.</p>
<p><strong>Privacy First:</strong> All data stays on your device.<br><strong>Full-Text Search:</strong> Find anything in your archive instantly.<br><strong>Seamless Integration:</strong> Works with Chromium-based browsers like Chrome and Edge.</p>
<p>Learn more on <a href="https://github.com/dosyago/DownloadNet">GitHub</a> or <a href="#purchase">get started</a> today.</p>
</section>
<section id="purchase">
<h2>Get DownloadNet Today</h2>
<p>Unlock the full power of offline web archiving with a DownloadNet license. Choose the plan that fits your needs and start building your personal internet archive.</p>
<script async src="https://js.stripe.com/v3/pricing-table.js"></script>
<stripe-pricing-table pricing-table-id="prctbl_1ROYhhBKxtsqOlorCcjBqv1w"
publishable-key="pk_live_519b8xgBKxtsqOloreQVhWpxIYVYN4FGyf60PLrQUHPGCFxW42ovujJ9n1qzduTAE06uOvHwshX7Gd7P4S3kk5APM00v8ZFDc73">
</stripe-pricing-table>
<p>For inquiries, contact <a href="mailto:support@dosaygo.com?subject=DownloadNet%20Purchase">support@dosaygo.com</a>.</p>
</section>
<section id="features">
<h2>Powerful Features for Offline Browsing</h2>
<div class="grid">
<div class="card">
<h3>Offline Access</h3>
<p>Cache web pages and browse them anytime, anywhere—no internet required.</p>
</div>
<div class="card">
<h3>Full-Text Search</h3>
<p>Instantly search through your entire archive with powerful indexing.</p>
</div>
<div class="card">
<h3>Privacy by Design</h3>
<p>Your data stays local—nothing is sent to external servers.</p>
</div>
<div class="card">
<h3>Easy Customization</h3>
<p>Adjust storage, memory, and more to fit your needs.</p>
</div>
</div>
</section>
<section id="community">
<h2>Join Our Community</h2>
<p>Connect with other DownloadNet users on <a href="https://github.com/dosyago/DownloadNet">GitHub</a>. Contribute, share ideas, or get support—we’re excited to grow with you.</p>
<p><a href="https://github.com/dosyago/DownloadNet#installation">Installation Guide</a> | <a href="mailto:support@dosaygo.com">Support</a></p>
</section>
<footer>
<div class="footer-links">
<a href="https://dosaygo.com/privacy.txt">Privacy Policy</a>
<a href="https://dosaygo.com/terms.txt">Terms of Service</a>
<a href="https://github.com/dosyago/DownloadNet">GitHub</a>
<a href="mailto:support@dosaygo.com">support@dosaygo.com</a>
</div>
<p>© 2025 DOSAYGO Corporation USA. All rights reserved.</p>
</footer>
</body>
</html>