-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 1.96 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web-Tools | Premium Image Suite</title>
<meta
name="description"
content="Professional client-side image editing tools including a full photo editor and specialized crop tool."
/>
<!-- Security hardening -->
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN" />
<meta name="referrer" content="no-referrer" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header>
<h1>Web-Tools</h1>
<p class="subtitle">
Elevate your visuals with our suite of powerful, privacy-first image
editing tools. Entirely in-browser.
</p>
</header>
<main class="tools-grid">
<a
href="photo-editor/index.html"
class="tool-card"
id="photo-editor-link"
>
<div class="icon">🖼️</div>
<h2>Photo Editor</h2>
<p>
Advanced photo editing with layers, filters, and professional canvas
controls powered by Fabric.js.
</p>
</a>
<a href="crop/index.html" class="tool-card" id="crop-link">
<div class="icon">✂️</div>
<h2>Quick Crop</h2>
<p>
Fast and precise image cropping with aspect ratio presets and
real-time previewing.
</p>
</a>
<a href="Img-converter/index.html" class="tool-card" id="converter-link">
<div class="icon">🔄</div>
<h2>Image Converter</h2>
<p>Batch convert images between popular formats like PNG, JPEG, and WebP instantly in your browser.</p>
</a>
</main>
<footer>
<p>© 2025 Web-Tools. Performance centered UI.</p>
</footer>
</div>
</body>
</html>