forked from PavelDoGreat/WebGL-Fluid-Simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Cache-Control" content="no-cache">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="./assets/img/AcidBox-48x48.png">
<link rel="icon" href="./assets/img/AcidBox-32x32.png">
<link rel="stylesheet" href="./assets/css/stylesheet.css">
<title>Acid Box</title>
<meta property="og:type" content="website">
<script src="./assets/js/gui.js"></script>
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-105392568-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<canvas></canvas>
<script src="./assets/js/index.js"></script>
</body>
</html>