-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (36 loc) · 1.32 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
<!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>Filter App 😎</title>
<script src="index.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main-content">
<div class="card">
<h1>Welcome to Filter App ! 😎</h1>
</div>
<img src="https://source.unsplash.com/random/300×300" width="300px" height="300px" class="image" id="image">
<div class="import">
<input type='file' name='image' id="file" class="file_import">
</div>
<div class="grid">
<button id="black_white" class="btn">Black White</button>
<button id="sepia" class="btn">Sepia</button>
<button id="saturate" class="btn">Saturate</button>
<button id="blur" class="btn">blur</button>
</div>
</div>
<footer class="footer">
<p>© 2022</p>
<p>Build with 💖 by
<a href="https://codeforcommunity.codes">Code For Community</a> |
<a href="http://abbhishek.me"> Abhishek Kushwaha</a> |
<a href="http://port-folio-beta.vercel.app/ "> Shivam Basak</a>
</p>
</footer>
</body>
</html>