-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 763 Bytes
/
index.html
File metadata and controls
22 lines (21 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Compressor</title>
<script src="compressor.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>Image Compressor</h2>
<input type="file" id="imageInput" accept="image/*">
<div class="file-info" id="fileInfo"></div>
<label for="quality">Quality (0.1 - 1):</label>
<input type="number" id="quality" min="0.1" max="1" step="0.1" value="0.6">
<button id="downloadBtn" class="download">Download Compressed Image</button>
</div>
<script src="script.js"></script>
</body>
</html>