generated from lorossi/empty-html5-canvas-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (27 loc) · 995 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="Circle bars" />
<meta charset="utf-8">
<title>Circle bars</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="Lorenzo Rossi" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="css/vars.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preload" href="css/fonts/Roboto-Light.ttf" as="font" crossorigin>
<script src="js/CCapture.all.min.js"></script>
<script src="js/simplex-noise.js"></script>
<script src="js/engine.js"></script>
<script src="js/bars.js"></script>
<script src="js/sketch.js"></script>
</head>
<body>
<div class="container">
<canvas id="sketch" width="1000" height="1000">
</canvas>
</div>
<div class="footer"></div>
</body>
</html>