-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (64 loc) · 1.7 KB
/
Copy pathindex.html
File metadata and controls
68 lines (64 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>No-API Web Tools</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A collection of small, fast, privacy-friendly web tools that run entirely in your browser. No APIs. No backend." />
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
max-width: 720px;
margin: auto;
padding: 2rem;
line-height: 1.6;
}
h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
p {
opacity: 0.8;
}
ul {
list-style: none;
padding: 0;
margin-top: 2rem;
}
li {
margin-bottom: 1rem;
}
a {
text-decoration: none;
font-weight: 500;
}
a:hover {
text-decoration: underline;
}
footer {
margin-top: 3rem;
font-size: 0.9rem;
opacity: 0.6;
}
</style>
</head>
<body>
<h1>No-API Web Tools</h1>
<p>
Small, useful tools that run entirely in your browser.
<br />
No APIs. No accounts. No tracking.
</p>
<ul>
<li><a href="./word-counter/">Word Counter</a> — live word & character count</li>
<li><a href="./text-cleaner/">Text Cleaner</a> — remove extra spaces & line breaks</li>
<li><a href="./case-converter/">Case Converter</a> — upper / lower / title case</li>
<li><a href="./json-formatter/">JSON Formatter</a> — pretty-print JSON</li>
<li><a href="./image-resizer/">Image Resizer</a> — resize images locally</li>
</ul>
<footer>
Built as local-first browser utilities.<br />
More tools → <a href="https:/www.yuzool.com">yuzool.com</a>
</footer>
</body>
</html>