-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
679 lines (629 loc) · 19.8 KB
/
Copy pathindex.html
File metadata and controls
679 lines (629 loc) · 19.8 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Web Dev Toolbox — Essential Browser Tools for Frontend Developers
</title>
<meta
name="description"
content="10 powerful, privacy-first developer tools that run entirely in your browser. JSON formatter, CSS tools, image compressor, gradient generator, and more."
/>
<meta
name="keywords"
content="web developer tools, JSON formatter, CSS tailwind converter, image compressor, gradient generator, base64 encoder, SVG optimizer"
/>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-KEB646F2DZ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-KEB646F2DZ");
</script>
<!-- Open Graph -->
<meta property="og:title" content="Web Dev Toolbox" />
<meta
property="og:description"
content="10 essential browser-based tools for frontend developers. Fast, private, free."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://webdevtoolbox.dev" />
<!-- Fonts & Icons -->
<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=Space+Mono:wght@400;700&family=Syne:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<link rel="stylesheet" href="./assets/css/main.css" />
<style>
/* === HERO === */
.hero {
min-height: calc(100vh - 64px);
display: flex;
flex-direction: column;
justify-content: center;
padding: 6rem 2rem 4rem;
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
}
.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--mono);
font-size: 0.75rem;
color: var(--accent);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
content: "";
width: 30px;
height: 1px;
background: var(--accent);
}
.hero h1 {
font-size: clamp(3rem, 7vw, 6rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 0.95;
margin-bottom: 1.5rem;
}
.hero h1 .line1 {
display: block;
}
.hero h1 .line2 {
display: block;
background: linear-gradient(135deg, var(--accent), var(--accent2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero h1 .line3 {
display: block;
color: var(--text-dim);
}
.hero-sub {
font-size: 1.1rem;
color: var(--text-muted);
max-width: 520px;
margin-bottom: 2.5rem;
line-height: 1.7;
}
.hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.hero-stats {
display: flex;
gap: 3rem;
margin-top: 5rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
}
.stat-item {
}
.stat-num {
font-size: 2rem;
font-weight: 800;
color: var(--accent);
font-family: var(--mono);
display: block;
}
.stat-label {
font-family: var(--mono);
font-size: 0.7rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.1em;
}
/* floating accent shapes */
.hero-gfx {
position: absolute;
right: -2rem;
top: 50%;
transform: translateY(-50%);
width: 420px;
height: 420px;
pointer-events: none;
opacity: 0.4;
}
/* === TOOLS SECTION === */
.section-header {
padding: 4rem 2rem 2rem;
max-width: 1100px;
margin: 0 auto;
}
.section-tag {
display: inline-block;
font-family: var(--mono);
font-size: 0.7rem;
color: var(--accent);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 1rem;
}
.section-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
letter-spacing: -0.03em;
margin-bottom: 0.75rem;
}
.section-header p {
color: var(--text-muted);
max-width: 480px;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1px;
max-width: 1100px;
margin: 0 auto 0;
padding: 0 2rem 4rem;
border-top: 1px solid var(--border);
}
.tool-card {
background: var(--surface);
border-right: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 2rem;
transition: background 0.2s;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.tool-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}
.tool-card:hover {
background: var(--surface2);
}
.tool-card:hover::before {
transform: scaleX(1);
}
.tool-card-icon {
width: 48px;
height: 48px;
border-radius: 10px;
background: rgba(0, 255, 135, 0.08);
border: 1px solid rgba(0, 255, 135, 0.15);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: var(--accent);
margin-bottom: 1.25rem;
}
.tool-card-num {
position: absolute;
top: 1.5rem;
right: 1.5rem;
font-family: var(--mono);
font-size: 0.7rem;
color: var(--text-dim);
}
.tool-card h3 {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.5rem;
letter-spacing: -0.02em;
}
.tool-card p {
color: var(--text-muted);
font-size: 0.875rem;
line-height: 1.6;
flex: 1;
margin-bottom: 1.5rem;
}
.tool-card .btn {
width: 100%;
justify-content: center;
}
/* === WHY SECTION === */
.why-section {
max-width: 1100px;
margin: 0 auto;
padding: 4rem 2rem;
border-top: 1px solid var(--border);
}
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
}
.why-card {
padding: 2rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
transition:
border-color 0.2s,
box-shadow 0.2s;
}
.why-card:hover {
border-color: var(--border-bright);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.why-icon {
font-size: 1.5rem;
color: var(--accent);
margin-bottom: 1rem;
}
.why-card h3 {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.why-card p {
color: var(--text-muted);
font-size: 0.875rem;
line-height: 1.7;
}
@media (max-width: 768px) {
.hero {
min-height: auto;
padding: 4rem 1.5rem 3rem;
}
.hero-gfx {
display: none;
}
.hero-stats {
gap: 1.5rem;
margin-top: 3rem;
}
.why-grid {
grid-template-columns: 1fr;
}
.tools-grid {
padding: 0 0 3rem;
}
.tool-card {
border-right: none;
}
}
</style>
</head>
<body>
<div class="page-wrapper">
<!-- HERO -->
<section class="hero" aria-label="Hero">
<span class="hero-eyebrow">v1.0 — 10 Essential Tools</span>
<h1>
<span class="line1">Your Frontend</span>
<span class="line2">Dev Toolbox</span>
<span class="line3">In the Browser.</span>
</h1>
<p class="hero-sub">
10 powerful developer tools that run entirely in your browser. No
servers, no accounts, no tracking. Just fast, focused utilities for
frontend developers.
</p>
<div class="hero-actions">
<a href="#tools" class="btn btn-primary">
<i class="fa-solid fa-toolbox" aria-hidden="true"></i> Explore Tools
</a>
<a href="#why" class="btn btn-secondary">
<i class="fa-solid fa-shield-halved" aria-hidden="true"></i> Privacy
First
</a>
</div>
<div class="hero-stats" role="list">
<div class="stat-item" role="listitem">
<span class="stat-num">10</span>
<span class="stat-label">Tools</span>
</div>
<div class="stat-item" role="listitem">
<span class="stat-num">0</span>
<span class="stat-label">Servers</span>
</div>
<div class="stat-item" role="listitem">
<span class="stat-num">100%</span>
<span class="stat-label">Private</span>
</div>
<div class="stat-item" role="listitem">
<span class="stat-num">Free</span>
<span class="stat-label">Always</span>
</div>
</div>
<!-- SVG decoration -->
<svg
class="hero-gfx"
viewBox="0 0 400 400"
fill="none"
aria-hidden="true"
>
<circle
cx="200"
cy="200"
r="160"
stroke="url(#g1)"
stroke-width="1"
/>
<circle
cx="200"
cy="200"
r="120"
stroke="url(#g1)"
stroke-width="0.5"
stroke-dasharray="4 8"
/>
<circle
cx="200"
cy="200"
r="80"
stroke="url(#g1)"
stroke-width="0.5"
/>
<circle cx="200" cy="40" r="5" fill="#00ff87" />
<circle cx="360" cy="200" r="3" fill="#00d4ff" />
<circle cx="200" cy="360" r="4" fill="#00ff87" opacity="0.5" />
<line
x1="200"
y1="40"
x2="360"
y2="200"
stroke="#00ff87"
stroke-width="0.5"
opacity="0.3"
/>
<line
x1="360"
y1="200"
x2="200"
y2="360"
stroke="#00d4ff"
stroke-width="0.5"
opacity="0.3"
/>
<defs>
<linearGradient
id="g1"
x1="0"
y1="0"
x2="400"
y2="400"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#00ff87" stop-opacity="0.4" />
<stop offset="1" stop-color="#00d4ff" stop-opacity="0.1" />
</linearGradient>
</defs>
</svg>
</section>
<!-- TOOLS GRID -->
<section id="tools" aria-label="Available tools">
<div class="section-header">
<span class="section-tag">// tools</span>
<h2>Everything You Need</h2>
<p>
From JSON validation to gradient generation — all the tools frontend
developers reach for daily.
</p>
</div>
<div class="tools-grid" role="list">
<article class="tool-card" role="listitem">
<span class="tool-card-num">01</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-code"></i>
</div>
<h3>JSON Formatter & Validator</h3>
<p>
Format, validate, and prettify JSON instantly. Catch errors before
they hit production.
</p>
<a href="./tools/json-formatter.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">02</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-brands fa-css3-alt"></i>
</div>
<h3>CSS → Tailwind Converter</h3>
<p>
Paste CSS properties and get the equivalent Tailwind utility
classes automatically.
</p>
<a href="./tools/css-tailwind.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">03</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-display"></i>
</div>
<h3>Responsive Screen Tester</h3>
<p>
Preview any URL at common device sizes. Test responsive
breakpoints instantly.
</p>
<a href="./tools/responsive-tester.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">04</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-image"></i>
</div>
<h3>Image Compressor</h3>
<p>
Drag-and-drop image compression with quality control. Reduce file
size for the web.
</p>
<a href="./tools/image-compressor.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">05</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-palette"></i>
</div>
<h3>Color Palette Generator</h3>
<p>
Extract color palettes from images or generate harmonious color
schemes on the fly.
</p>
<a href="./tools/color-palette.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">06</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-wand-magic-sparkles"></i>
</div>
<h3>CSS Gradient Generator</h3>
<p>
Design beautiful CSS gradients with live preview. Copy
production-ready code instantly.
</p>
<a href="./tools/gradient-generator.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">07</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-lock"></i>
</div>
<h3>Base64 Encoder / Decoder</h3>
<p>
Encode strings and files to Base64, or decode Base64 back to
readable text.
</p>
<a href="./tools/base64.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">08</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-vector-square"></i>
</div>
<h3>SVG Optimizer / Cleaner</h3>
<p>
Remove bloat from SVG files. Strip unnecessary attributes,
metadata and comments.
</p>
<a href="./tools/svg-optimizer.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">09</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-share-nodes"></i>
</div>
<h3>Meta Tag / OG Preview</h3>
<p>
Preview how your page looks when shared on social media. Validate
Open Graph tags.
</p>
<a href="./tools/meta-preview.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
<article class="tool-card" role="listitem">
<span class="tool-card-num">10</span>
<div class="tool-card-icon" aria-hidden="true">
<i class="fa-solid fa-clone"></i>
</div>
<h3>CSS Box Shadow Generator</h3>
<p>
Build complex box shadows visually with live preview and one-click
CSS copy.
</p>
<a href="./tools/box-shadow.html" class="btn btn-primary">
<i class="fa-solid fa-arrow-right" aria-hidden="true"></i> Open
Tool
</a>
</article>
</div>
</section>
<!-- WHY SECTION -->
<section id="why" aria-label="Benefits" class="why-section">
<span class="section-tag">// why this toolbox</span>
<h2>Built for Developers, <br />Not Data Collectors</h2>
<div class="why-grid">
<div class="why-card">
<div class="why-icon">
<i class="fa-solid fa-bolt" aria-hidden="true"></i>
</div>
<h3>Blazing Fast</h3>
<p>
No round-trips to a server. All processing happens locally in your
browser using native JavaScript APIs. Instant results, even
offline.
</p>
</div>
<div class="why-card">
<div class="why-icon">
<i class="fa-solid fa-shield-halved" aria-hidden="true"></i>
</div>
<h3>Privacy First</h3>
<p>
Your data never leaves your machine. We don't collect analytics,
run trackers, or require any login. What you paste here stays
here.
</p>
</div>
<div class="why-card">
<div class="why-icon">
<i class="fa-solid fa-terminal" aria-hidden="true"></i>
</div>
<h3>Developer Focused</h3>
<p>
Built by frontend developers for frontend developers. No fluff, no
paywalls, no upsells — just clean tools that get out of your way.
</p>
</div>
</div>
</section>
</div>
<script src="./assets/js/nav.js"></script>
<script>
injectNav();
injectFooter();
</script>
</body>
</html>