-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
44 lines (37 loc) · 1.98 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
<!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">
<meta property="og:title" content="Matrix Rain Effect" />
<meta property="og:image" itemprop="image"
content="https://sumitkcs.github.io/matrix-effect/assets/img/preview-green.png" />
<meta property="og:image:alt"
content="The words 'Not all who wander are lost' set against a starry night background. Click to visit website." />
<meta property="og:description" content="Project by Er. Sumit Kumar" />
<meta property="og:url" content="https://sumitKcs.github.io/matrix-effect/" />
<meta property="og:type" content="website" />
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta name="twitter:card" content="summary" />
<meta name="description" content="A constellation efffect animation app. Click to visit website." />
<meta name="theme-color" content="#000000" />
<meta name="keywords"
content="HTML, CSS, JavaScript, Canvas API, mouse trail, animation, particles, constellation" />
<meta name="author" content="Er. Sumit Kumar" />
<title>Matrix Rain Effect</title>
<link rel="icon" type="image/png" href="assets/img/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png" />
<link rel="stylesheet" href="assets/css/style.css">
<link rel="manifest" href="manifest.webmanifest" />
<link rel="canonical" href="https://sumitKcs.github.io/matrix-effect" />
</head>
<body>
<canvas id="canvas"></canvas>
<script defer src="assets/js/app.js" type="module"></script>
</body>
</html>