-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (58 loc) · 1.73 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
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, shrink-to-fit=no"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lobster&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" type="image/*" href="main/Images/logo.png"/>
<link rel="stylesheet" href="main/css/index.css" />
<title>Image Editor</title>
</head>
<body>
<a href="#content" class="header" style="text-shadow: 9px 7px 5px dimgray;">
Welcome To Image Editor
</a>
<div id="content">
<input
type="button"
value="RainBow Effect"
onclick="parent.open('main/html/rainbow.html');soundIndex()"
/>
<input
type="button"
value="Gray Scale Effect"
onclick="parent.open('main/html/grayscale.html');soundIndex()"
/>
<input
type="button"
value="Green Screen Effect"
onclick="parent.open('main/html/greenscreen.html');soundIndex()"
/>
<input
type="button"
value="Try Steganography"
onclick="parent.open('main/html/steganography.html');soundIndex()"
/>
<input
type="button"
value="ColorOverlay Effect"
onclick="parent.open('main/html/overlay.html');soundIndex()"
/>
</div>
<footer id="arrow">
<a href="#content">
<img id="size" src="main/Images/arrow.png"></img></a>
</footer>
<a href="https://github.com/DebugAgrawal" target="_blank"
> <footer id="d"></footer></a>
<a href="https://github.com/ShashankMisal" target="_blank"
> <footer id="s"></footer></a>
<script src="main/js/function.js"></script>
</body>
</html>