forked from sachin13-10/pdf-tool-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
222 lines (216 loc) · 6.15 KB
/
about.html
File metadata and controls
222 lines (216 loc) · 6.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="fc-id" content="REPLACE_WITH_FUNDING_CHOICES_ID" />
<title>About - EditMyPDFs.com</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Inter", sans-serif;
background: #fff;
color: #111;
margin: 0;
padding: 0;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-bottom: 1px solid #eee;
}
header h1 {
font-size: 1.4rem;
font-weight: 700;
}
header nav a {
margin-left: 1.5rem;
text-decoration: none;
color: #111;
font-weight: 500;
}
main {
max-width: 900px;
margin: 3rem auto;
padding: 1rem 2rem;
}
h2 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
p.lead {
color: #555;
margin-bottom: 1.5rem;
}
.card {
border: 1px solid #eee;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
background: #fff;
}
footer {
text-align: center;
padding: 2rem;
color: #777;
font-size: 0.9rem;
border-top: 1px solid #eee;
margin-top: 3rem;
}
</style>
</head>
<body>
<header>
<h1>EDITMYPDFS<span style="font-weight: 400">.com</span></h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="privacy.html">Privacy</a>
<a href="terms.html">Terms</a>
<a href="about.html#contact">Contact</a>
</nav>
</header>
<main>
<h2>About EditMyPDFs.com</h2>
<p class="lead">
Fast, private, and free PDF tools — all in your browser.
</p>
<div class="card">
<p>
EditMyPDFs.com provides simple tools like Compress PDF and Images to
PDF that run entirely on your device using modern web technologies.
Your files never leave your computer — there are no uploads to a
server.
</p>
<p>
This project is a work in progress. More tools are coming soon. If you
have suggestions or find bugs, feel free to reach out and share
feedback.
</p>
<hr
style="margin: 1.5rem 0; border: none; border-top: 1px solid #eee"
/>
<h3 id="contact">Contact</h3>
<p>
For support or questions, email us at
<a href="mailto:support@editmypdfs.com">support@editmypdfs.com</a>.
<!-- Replace the email above with your preferred contact address. -->
</p>
</div>
</main>
<footer>© 2025 EditMyPDFs.com — Free PDF Tools</footer>
<!-- Cookie consent (minimal) -->
<div
id="cookie-consent"
style="
display: none;
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
background: #111;
color: #fff;
padding: 12px 16px;
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
display: flex;
gap: 12px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
"
>
<span style="font-size: 14px">
We use cookies for ads and measurement. See our
<a
href="privacy.html"
style="color: #93c5fd; text-decoration: underline"
>Privacy Policy</a
>.
</span>
<button
data-accept
style="
background: #22c55e;
color: #fff;
border: none;
border-radius: 6px;
padding: 8px 12px;
font-weight: 600;
cursor: pointer;
"
>
Accept
</button>
</div>
<script>
(function () {
var bar = document.getElementById("cookie-consent");
try {
if (localStorage.getItem("cookieConsent") === "accepted") {
if (bar) bar.style.display = "none";
return;
}
} catch (e) {}
if (!bar) return;
bar.style.display = "flex";
var btn = bar.querySelector("button[data-accept]");
if (btn)
btn.addEventListener("click", function () {
try {
localStorage.setItem("cookieConsent", "accepted");
} catch (e) {}
bar.remove();
});
})();
</script>
<!-- Suppress local banner and load Funding Choices CMP when configured -->
<script>
(function () {
function loadFundingChoices(id) {
var bar = document.getElementById("cookie-consent");
if (bar) bar.remove();
var s = document.createElement("script");
s.async = true;
s.crossOrigin = "anonymous";
s.src =
"https://fundingchoicesmessages.google.com/i/" +
encodeURIComponent(id);
document.head.appendChild(s);
}
var meta = document.querySelector('meta[name="fc-id"]');
var id =
(window.__FC_ID && ("" + window.__FC_ID).trim()) ||
(meta && (meta.content || "").trim());
if (id && !/^REPLACE_/i.test(id)) {
loadFundingChoices(id);
return;
}
var base =
location.pathname.indexOf("/features/") !== -1
? "../vendor/"
: "./vendor/";
var tagId = "cmp-id-loader";
if (!document.getElementById(tagId)) {
var t = document.createElement("script");
t.id = tagId;
t.async = true;
t.src = base + "cmp-id.js";
t.onload = function () {
var id2 =
(window.__FC_ID && ("" + window.__FC_ID).trim()) ||
(meta && (meta.content || "").trim());
if (id2 && !/^REPLACE_/i.test(id2)) loadFundingChoices(id2);
};
t.onerror = function () {};
document.head.appendChild(t);
}
})();
</script>
</body>
</html>