-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1020 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Music quiz</title>
<link
href="https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,500i,700i&subset=cyrillic"
rel="stylesheet"
/>
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<svg
xmlns="http://www.w3.org/2000/svg"
style="position: absolute; left: -1200em;"
>
<filter id="blur">
<feGaussianBlur in="SourceGraphic" stdDeviation="5"></feGaussianBlur>
<feOffset dx="0" dy="0"></feOffset>
<feMerge>
<!--takes the result of another filter to be processed by its parent-->
<feMergeNode></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
</svg>
<div class="app">
<section class="main"></section>
<section class="copyright">
Made in 2019
</section>
</div>
<script src="js/main.js" defer></script>
</body>
</html>