-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.34 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 1.34 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- meta tags -->
<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="logo.png" />
<link rel="icon" href="logo.png" />
<title>WebGL Fluid Simulation</title>
<meta
name="description"
content="A WebGL fluid simulation that works in mobile browsers."
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Webgl Fluid Simulation" />
<meta
property="og:description"
content="A WebGL fluid simulation that works in mobile browsers."
/>
<meta property="og:url" content="https://4751.github.io/fluid/" />
<meta
property="og:image"
content="https://4751.github.io/fluid/logo.png"
/>
<!-- scripts & styles -->
<script type="text/javascript" src="dat.gui.min.js"></script>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<canvas></canvas>
<script src="./script.js"></script>
</body>
</html>