-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
334 lines (319 loc) · 17.2 KB
/
index.html
File metadata and controls
334 lines (319 loc) · 17.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PicsPanda - Free Online Image & PDF Tools</title>
<!-- Performance optimizations -->
<link rel="preload" href="css/styles.css" as="style">
<link rel="preload" href="js/main.js" as="script">
<link rel="preload" href="images/picspanda-logo.svg" as="image">
<!-- Browser hints -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">
<!-- Main CSS with performance attributes -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" media="print" onload="this.media='all'">
<link rel="icon" type="image/svg+xml" href="images/favicon.svg">
<meta name="description" content="Free online tools for image and PDF conversion, compression, and editing. No installation or registration required.">
<link rel="stylesheet" href="css/pwa-prompt.css">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#4a6cf7">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="PicsPanda">
<link rel="apple-touch-icon" href="images/icons/icon-192x192.png">
<link rel="stylesheet" href="css/pwa-prompt.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="/">
<img src="images/picspanda-logo.svg" alt="PicsPanda Logo">
<span>PicsPanda</span>
</a>
</div>
<nav>
<ul>
<li><a href="#image-tools">Image Tools</a></li>
<li><a href="#pdf-tools">PDF Tools</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<div class="theme-toggle">
<button id="theme-toggle-btn">
<i class="fas fa-sun"></i>
</button>
</div>
<div class="mobile-menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</header>
<section class="hero background-animate">
<div class="container">
<h1>Free Online Image & PDF Tools</h1>
<p>Convert, compress, and edit your files directly in your browser. No installation or registration required.</p>
<div class="search-box">
<input type="text" id="tool-search" placeholder="Search for a tool...">
<button id="search-btn"><i class="fas fa-search"></i></button>
</div>
</div>
</section>
<section id="image-tools" class="tools-section">
<div class="container">
<h2>Image Tools</h2>
<div class="tools-grid">
<div class="tool-card" data-tool="image-converter">
<div class="tool-icon"><i class="fas fa-exchange-alt"></i></div>
<h3>Image Converter</h3>
<p>Convert images between JPG, PNG, WEBP, and more</p>
<a href="tools/image-converter.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-compressor">
<div class="tool-icon"><i class="fas fa-compress"></i></div>
<h3>Image Compressor</h3>
<p>Reduce image file size while maintaining quality</p>
<a href="tools/image-compressor.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-resizer">
<div class="tool-icon"><i class="fas fa-crop-alt"></i></div>
<h3>Image Resizer</h3>
<p>Resize and scale images to specific dimensions</p>
<a href="tools/image-resizer.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-cropper">
<div class="tool-icon"><i class="fas fa-crop"></i></div>
<h3>Image Cropper</h3>
<p>Crop unwanted parts from your images</p>
<a href="tools/image-cropper.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-editor">
<div class="tool-icon"><i class="fas fa-edit"></i></div>
<h3>Image Editor</h3>
<p>Edit images with filters, effects, and adjustments</p>
<a href="tools/image-editor.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-watermark">
<div class="tool-icon"><i class="fas fa-copyright"></i></div>
<h3>Image Watermark</h3>
<p>Add text or image watermarks to protect your work</p>
<a href="tools/image-watermark.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-color-picker">
<div class="tool-icon"><i class="fas fa-eye-dropper"></i></div>
<h3>Color Picker</h3>
<p>Extract colors from images and get color codes</p>
<a href="tools/image-color-picker.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-background-remover">
<div class="tool-icon"><i class="fas fa-eraser"></i></div>
<h3>Background Remover</h3>
<p>Remove backgrounds from images automatically</p>
<a href="tools/image-background-remover.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-text-recognition">
<div class="tool-icon"><i class="fas fa-font"></i></div>
<h3>Text Recognition (OCR)</h3>
<p>Extract text from images with AI-powered OCR</p>
<a href="tools/image-text-recognition.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-enhancer">
<div class="tool-icon"><i class="fas fa-magic"></i></div>
<h3>Image Enhancer</h3>
<p>Improve image quality with AI upscaling</p>
<a href="tools/image-enhancer.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-noise-reduction">
<div class="tool-icon"><i class="fas fa-broom"></i></div>
<h3>Noise Reduction</h3>
<p>Remove noise and grain from photos</p>
<a href="tools/image-noise-reduction.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-face-blur">
<div class="tool-icon"><i class="fas fa-user-shield"></i></div>
<h3>Face Blur</h3>
<p>Automatically detect and blur faces in images</p>
<a href="tools/image-face-blur.html" class="tool-link">Select Tool</a>
</div>
</div>
</div>
</section>
<section id="pdf-tools" class="tools-section">
<div class="container">
<h2>PDF Tools</h2>
<div class="tools-grid">
<div class="tool-card" data-tool="pdf-to-image">
<div class="tool-icon"><i class="fas fa-file-export"></i></div>
<h3>PDF to Image</h3>
<p>Convert PDF pages to JPG, PNG, or other formats</p>
<a href="tools/pdf-to-image.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="image-to-pdf">
<div class="tool-icon"><i class="fas fa-file-import"></i></div>
<h3>Image to PDF</h3>
<p>Create PDF files from your images</p>
<a href="tools/image-to-pdf.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-compressor">
<div class="tool-icon"><i class="fas fa-file-archive"></i></div>
<h3>PDF Compressor</h3>
<p>Reduce PDF file size while preserving quality</p>
<a href="tools/pdf-compressor.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-merger">
<div class="tool-icon"><i class="fas fa-object-group"></i></div>
<h3>PDF Merger</h3>
<p>Combine multiple PDF files into one document</p>
<a href="tools/pdf-merger.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-splitter">
<div class="tool-icon"><i class="fas fa-cut"></i></div>
<h3>PDF Splitter</h3>
<p>Split PDF files into multiple documents</p>
<a href="tools/pdf-splitter.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-page-remover">
<div class="tool-icon"><i class="fas fa-trash-alt"></i></div>
<h3>PDF Page Remover</h3>
<p>Remove specific pages from PDF documents</p>
<a href="tools/pdf-page-remover.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-rotate">
<div class="tool-icon"><i class="fas fa-redo"></i></div>
<h3>PDF Rotate</h3>
<p>Rotate pages in PDF documents</p>
<a href="tools/pdf-rotate.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-protect">
<div class="tool-icon"><i class="fas fa-lock"></i></div>
<h3>PDF Protect</h3>
<p>Add password protection to PDF files</p>
<a href="tools/pdf-protect.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-ocr">
<div class="tool-icon"><i class="fas fa-file-alt"></i></div>
<h3>PDF OCR</h3>
<p>Make scanned PDFs searchable with text recognition</p>
<a href="tools/pdf-ocr.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-annotator">
<div class="tool-icon"><i class="fas fa-highlighter"></i></div>
<h3>PDF Annotator</h3>
<p>Add notes, highlights, and drawings to PDF files</p>
<a href="tools/pdf-annotator.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-watermark">
<div class="tool-icon"><i class="fas fa-stamp"></i></div>
<h3>PDF Watermark</h3>
<p>Add text or image watermarks to PDF documents</p>
<a href="tools/pdf-watermark.html" class="tool-link">Select Tool</a>
</div>
<div class="tool-card" data-tool="pdf-repair">
<div class="tool-icon"><i class="fas fa-wrench"></i></div>
<h3>PDF Repair</h3>
<p>Fix corrupted or damaged PDF files</p>
<a href="tools/pdf-repair.html" class="tool-link">Select Tool</a>
</div>
</div>
</div>
<h2 class="section-title">Why Choose PicsPanda?</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-star"></i>
<h3>Perfect Quality</h3>
<p>The best online image resizer to resize your images at the highest quality.</p>
</div>
<div class="feature-card">
<i class="fas fa-bolt"></i>
<h3>Lightning Fast</h3>
<p>Our highly optimized tools can process your images within seconds!</p>
</div>
<div class="feature-card">
<i class="fas fa-mouse-pointer"></i>
<h3>Easy To Use</h3>
<p>Simply upload your image and choose your settings. It's as easy as that!</p>
</div>
<div class="feature-card">
<i class="fas fa-globe"></i>
<h3>Works Anywhere</h3>
<p>Browser-based tools with no software to install. Works on Windows, Linux, and Mac.</p>
</div>
<div class="feature-card">
<i class="fas fa-shield-alt"></i>
<h3>Privacy Guaranteed</h3>
<p>All processing happens in your browser. Your files never leave your device.</p>
</div>
<div class="feature-card">
<i class="fas fa-gift"></i>
<h3>It's Free</h3>
<p>100% free to use with no registrations, no watermarks, and no limitations.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<div class="footer-logo">
<img src="images/picspanda-logo.svg" alt="PicsPanda Logo">
<span>PicsPanda</span>
</div>
<p class="footer-description">
Free online tools for image and PDF processing. Our mission is to make professional-grade tools accessible to everyone, with privacy and security at the forefront.
</p>
<div class="social-links">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-links">
<h4>Tools</h4>
<ul>
<li><a href="#image-tools"><i class="fas fa-angle-right"></i>Image Tools</a></li>
<li><a href="#pdf-tools"><i class="fas fa-angle-right"></i>PDF Tools</a></li>
<li><a href="#new-tools"><i class="fas fa-angle-right"></i>New Tools</a></li>
<li><a href="#popular-tools"><i class="fas fa-angle-right"></i>Popular Tools</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Company</h4>
<ul>
<li><a href="about.html"><i class="fas fa-angle-right"></i>About Us</a></li>
<li><a href="#blog"><i class="fas fa-angle-right"></i>Blog</a></li>
<li><a href="#careers"><i class="fas fa-angle-right"></i>Careers</a></li>
<li><a href="#contact"><i class="fas fa-angle-right"></i>Contact Us</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Contact</h4>
<ul class="footer-contact">
<li>
<i class="fas fa-envelope"></i>
<span>support@picspanda.com</span>
</li>
<li>
<i class="fas fa-map-marker-alt"></i>
<span>01 Mahinam Benipur<br>BIhar, India 847103</span>
</li>
<li>
<i class="fas fa-clock"></i>
<span>Mon - Fri: 9:00 AM - 6:00 PM</span>
</li>
</div>
<a href="//www.dmca.com/Protection/Status.aspx?ID=70d9003c-a480-476b-b545-6445412ea34b" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca_protected_sml_120m.png?ID=70d9003c-a480-476b-b545-6445412ea34b" alt="DMCA.com Protection Status" /></a> <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script>
</div>
<div class="copyright">
<p>© 2023 PicsPanda. All rights reserved. | <a href="privacy-policy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a></p>
</div>
</div>
</footer>
<script src="js/main.js"></script>
<script src="js/pwa-prompt.js"></script>
<script src="js/pwa.js"></script>
</body>
</html>