-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
48 lines (46 loc) · 1.65 KB
/
Index.html
File metadata and controls
48 lines (46 loc) · 1.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Project</title>
<link rel="stylesheet" href="style.css">
</head>
<script src="index.js"></script>
<body>
<!-- filter info -->
<svg class="filter" xmlns="http://www.w3.org/2000/svg">
<filter id="alphaPink">
<feColorMatrix
type="matrix"
values=" 1.000 0.000 0.000 0.000 0.000
0.000 0.200 0.000 0.000 0.000
0.000 0.000 0.600 0.000 0.000
0.000 0.000 0.000 1.000 0.000">
</feColorMatrix>
</filter>
<filter id="alphaGreen">
<feColorMatrix mode="matrix" values="0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0" result="joint" />
</filter>
<filter id="alphaBlue">
<feColorMatrix mode="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0" result="joint" />
</filter>
<filter id="alpha">
<feColorMatrix type="saturate" values="0"/>
</filter>
</svg>
<div id="matrix" class="matrix"></div>
<div class="imgWrap">
<img src="Header/SimpleAppGreen.png" alt="Header" class="header green">
<img src="Header/SimpleAppPink.png" alt="Header" class="header pink">
<img src="Header/SimpleAppBlue.png" alt="Header" class="header blue">
</div>
<div>
<a href="page2.html">
<button class="button-main glitch">
Next
</button>
</a>
</div>
</body>
</html>