-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Угадай мелодию</title>
<link href="css/main.min.css" rel="stylesheet">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<main class="app">
<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>
<feMergeNode></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
</svg>
<section class="main" id="root"></section>
</main>
<footer class="footer">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/">
<img src="img/icon-cc.png" alt="Creative Commons License" width="88" height="31" style="border-width:0">
</a>
<section class="copyright">
<a class="copyright__logo" href="https://htmlacademy.ru"><img src="img/logo-htmla.svg" width="144" height="49" alt="HTML Academy"></a>
<p class="copyright__text">Сделано в <a class="copyright__link" href="https://htmlacademy.ru">HTML Academy</a></p>
</section>
</footer>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>