-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Stretch</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Cloth simulation using Three.js" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0" />
<meta name="theme-color" content="#020406" />
<meta property="og:image" content="./assets/images/logo.png" />
<meta property="og:site_name" content="Treetop Playground" />
<meta property="og:type" content="object" />
<meta property="og:title" content="Stretch" />
<meta property="og:url" content="https://treetop-playground.github.io/Stretch" />
<meta property="og:description" content="Cloth simulation using Three.js" />
<link rel="stylesheet" type="text/css" href="./assets/css/main.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/109/three.js"></script>
</head>
<body>
<div id="footer">
<h4 class="footers"><a href="https://treetop-playground.github.io" target="_blank" rel="noopener">Treetop Playground</a></h4>
</footer>
<script src="./src/main.js" type="module"></script>
</body>
</html>