-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome-network-graph.html
More file actions
54 lines (54 loc) · 1.78 KB
/
home-network-graph.html
File metadata and controls
54 lines (54 loc) · 1.78 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
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<script src="https://cdn.linearicons.com/free/1.0.0/svgembedder.min.js"></script>
<head>
<title>CSP Industry Analysis</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" type="text/css" href="styles/homenetwork.css" />
<link rel="stylesheet" href="styles/navbar.css" />
</head>
<body>
<nav id="navbar">
<ul class="horizontal">
<li>
<a href="home-network-graph.html" class="active"
>CSP Cloud Parternships</a
>
</li>
<li>
<a href="map-geographic.html">WhatsApp Users Map</a>
</li>
<li>
<a href="secure-servers-map.html">Secure Servers Map</a>
</li>
<li>
<a href="scatter-charts.html">Original Content & Ratings</a>
</li>
<li>
<div class="dropdown">
<button class="dropbtn">
<li>Phone Subscriptions</li>
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="fixed-subscriptions-map.html"
>Fixed Telephone Subscriptions Map</a
>
<a href="cell-subscriptions-map.html">Cell Subscriptions Map</a>
<a href="line-graphs.html">Subscriptions</a>
</div>
</div>
</li>
</ul>
</nav>
<div id="forces"></div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="scripts/d3NetworkGraph.js"></script>
</body>
</html>