-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 758 Bytes
/
index.html
File metadata and controls
22 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Three-Collapse Demo</title>
<link rel="stylesheet" href="/styles.css" />
<link rel="icon" type="image/svg+xml" href="./public/icon.svg" />
</head>
<body>
<nav id="navbar">
<div class="logo">three-collapse</div>
<a href="/index.html" class="active">Architecture</a>
<a href="/models.html">Model</a>
<a href="/adjacency-builder.html">Adjacency Builder</a>
<a href="/connector-builder.html">Connector Builder</a>
<a href="/vr-demo.html">VR</a>
</nav>
<script type="module" src="./examples/adjacency-demo/demo.ts"></script>
</body>
</html>