-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.74 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
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en" data-name="cobrascript">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>d3.js | network</title>
<link rel="stylesheet" href="style/bootstrap.min.css">
<link rel="stylesheet" href="style/nn.css">
</head>
<body>
<section class="container">
<div class="row">
<div class="col-12 col-sm-6">
<p class="text-center">A mostly complete chart of</p>
</div>
<div class="col-12 col-sm-6">
<h3 class="text-center">Neural Network</h3>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-6 svgNetwork">
<h5 id="titleDesc" class="text-center"></h5>
<svg></svg>
</div>
<div class="col-12 col-sm-12 col-md-6 svgLoader">
<ul class="list-group"></ul>
</div>
<div class="col-12 col-sm-12 col-md-12 svgSketch">
<ul id="listTypes" class="list-group list-group-horizontal"></ul>
</div>
</div>
<div class="row mt-4">
<div class="col-12 col-sm-6 col-md-4">
<small>The whole page is powered by: <a href="https://github.com/d3" target="_blank">d3.js</a></small>
</div>
<div class="col-12 col-sm-6 col-md-4">
<small>Infographic: Fjodor van Veen <a href="https://github.com/asimovinstitute" title="https://asimovinstitute.org" target="_blank">Asimov Institute</a></small>
</div>
<div class="col-12 col-sm-12 col-md-4">
<small>Made in: <a href="https://github.com/snikos" target="_blank">snikos github</a></small>
</div>
</div>
</section>
<script type="text/javascript" src="script/d3.min.js" defer></script>
<script type="text/javascript" src="script/nn.js" defer></script>
</body>
</html>