-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 920 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!Doctype html>
<html lan=""en-us">
<head>
<title>Connecting Balls</title>
<meta charset="UTF-8" />
<meta name="author" content="kinza" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="animation connecting lines to the balls when mouse hover">
<meta name="keywords" content="animation, canvas, balls, lines" />
<!-- font -->
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playwrite+DK+Loopet:wght@100..400&display=swap" rel="stylesheet"> -->
<!-- stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <div id="welcome">
<h1>Lines Connecting the dots on mouse hover</h1>
</div> -->
<canvas id="canvas"></canvas>
<script src="script.js"></script>
</body>
</html>