-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
executable file
·43 lines (37 loc) · 2.17 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html lang="en" class="no-js">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=3.0, user-scalable=0" />
<title>Onyx Web Development Nuggets - Organizational chart with D3.js, expandable, zoomable, and fully initialized (Holding Company Tree Chart)</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="https://onyxdev.net/files/assets/images/favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" href="https://onyxdev.net/files/assets/images/favicons/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="https://onyxdev.net/files/assets/images/favicons/favicon-16x16.png" sizes="16x16" />
<link rel="manifest" href="https://onyxdev.net/files/assets/images/favicons/manifest.json" />
<link rel="mask-icon" href="https://onyxdev.net/files/assets/images/favicons/safari-pinned-tab.svg" color="#34b2a7" />
<link rel="shortcut icon" href="https://onyxdev.net/files/assets/images/favicons/favicon.ico" />
<meta name="msapplication-config" content="https://onyxdev.net/files/assets/images/favicons/browserconfig.xml" />
<meta name="theme-color" content="#34b2a7" />
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700&display=swap" />
<!-- Styles -->
<link rel="stylesheet" href="./assets/styles/main.css" />
</head>
<body>
<!-- JS note -->
<noscript>
<div class="no-js-note">
⚠️<br />
JavaScript is disabled in your browser!<br />
Please activate it to view this project.
</div>
</noscript>
<!-- Org Chart container -->
<div class="chart-container"></div>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.16.0/d3.min.js"></script>
<script src="./assets/scripts/data.js"></script>
<script src="./assets/scripts/main.js"></script>
</body>
</html>