-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.88 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<title>Image Compressor</title>
</head>
<body class="font-Poppins bg-cyan-400">
<div class="flex items-center justify-center min-h-[93vh]">
<div class="wrapper">
<div class="upload-box">
<input type="file" accept="image/*" hidden>
<img src="Images/upload-icon.svg" alt="">
<p class="font-semibold text-[1rem] mt-5">Browse Files to Upload</p>
</div>
<div class="content">
<div class="row size">
<div class="column width">
<label for="">Width</label>
<input type="number">
</div>
<div class="column height">
<label for="">Height</label>
<input type="number">
</div>
</div>
<div class="row checkboxes">
<div class="column ratio">
<input type="checkbox" id="ratio" checked>
<label for="ratio">Lock Aspect Ratio</label>
</div>
<div class="column quality">
<input type="checkbox" id="quality">
<label for="quality">Reduce Quaity</label>
</div>
</div>
<button class="download-btn">Download Image</button>
</div>
</div>
</div>
<footer class="flex justify-center items-center bg-cyan-500 py-[12px]">
<p class="font-medium text-white">Image Compressor by <span class="font-semibold">Joel Stan</span></p>
</footer>
<script src="index.js"></script>
</body>
</html>