-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.67 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
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image Background Remover</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
<div class="container">
<h1>Image Background Remover</h1>
<!-- Add Card -->
<div class="card" id="addCard">
<button>
<input type="file" name="" id="fileInput" />
Upload Image
</button>
<p>Choose an Image to Remove Background</p>
</div>
<!-- Display Card -->
<div class="card" id="displayCard">
<div class="image-cont">
<img id="display-img" src="" alt="" />
</div>
<button id="startBtn">Remove Background</button>
</div>
<!-- Download Card -->
<div class="card" id="downloadCard">
<div class="image-cont">
<img class="image-before" src="" alt="" />
<img class="image-after" src="" alt="" />
</div>
<div style="display: flex; gap: 10px">
<button style="padding: 10px 40px">
<a id="downloadHref" download="transparentImage"> Download </a>
</button>
</div>
</div>
</div>
<footer>
<p>All content Reserved by @Al Amin Khan</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>