-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (41 loc) · 2.16 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
<!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>Document</title>
<!-- Links -->
<link rel="shortcut icon" type="image/png" href="src/images/icon-of-site.png">
<link rel="stylesheet" href="src/styles/index.css">
<!-- Meta tags -->
<meta name="author" content="By Ukrainian Cupcake">
<meta name="keywords" content="Canvas-experiment">
<meta name="description" content="Rainbow pattern with resizing window">
<meta name="url" content="https://yuliyadm.github.io/Deep-dive-effect/">
<meta name="site_name" content="Deep dive effect">
<meta name="title" content="Deep dive effect">
<meta name="robots" content="index">
<meta name="locale" content="en_US">
<!-- Meta-og tags -->
<meta property="og:description" name="og:description" content="Rainbow pattern with resizing window">
<meta property="og:locale" name="og:locale" content="en_US">
<meta property="og:url" name="og:url" content="https://yuliyadm.github.io/Deep-dive-effect/">
<meta property="og:site_name" name="og:site_name" content="Deep-dive-effect">
<meta property="og:title" name="og:title" content="Deep dive effect">
<meta property="og:type" name="og:type" content="website">
<!-- Meta-twitter tags -->
<meta property="twitter:description" name="twitter:description" content="Rainbow pattern with resizing window">
<meta property="twitter:locale" name="twitter:locale" content="en_US">
<meta property="twitter:url" name="twitter:url" content="https://yuliyadm.github.io/Deep-dive-effect/">
<meta property="twitter:site_name" name="twitter:site_name" content="Deep-dive-effect">
<meta property="twitter:title" name="twitter:title" content="Deep dive effect">
<meta property="twitter:type" name="twitter:type" content="website">
<!-- Title -->
<title>Deep dive effect</title>
</head>
<body>
<canvas id="MyCanvas"></canvas>
<script src="src/scripts/script.js"></script>
</body>
</html>