-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
40 lines (40 loc) · 1.47 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
<!-- Copyright © TUT 2015 -->
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="jQuery-Ui/jquery-ui.css">
<link type="text/css" rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="jQuery/jQuery.js"></script>
<script type="text/javascript" src="jQuery-Ui/jquery-ui.min.js"></script>
<script type="text/javascript" src="d3/d3.min.js"></script>
<script type="text/javascript" src="js/graph.js"></script>
<title>TUT - Neuron Graph</title>
</head>
<body>
<div class="site-container">
<div class="header">
<a href="http://www.tut.fi/en/home" target="new"><img class="logo-header" src="images/logo.png"></a>
<h1 class="header-text">TUT - Neuron Graph</h1>
</div>
<div class="site-content">
<div class="start">
<p class="text margin-bottom">Welcome to the TUT - Neuron Graph site.</p>
<a href="#" class="button" onclick="gOpen();">Open a graph</a>
</div>
<div class="neuron-graph" style="display: none;">
<div class="toolbox align-top">
<p class="text display-inline-block zoom-text">Zoom: - </p><div class="slider display-inline-block"></div><p class="text display-inline-block margin-left"> +</p>
<a href="#" class="button" onclick="location.reload();">Back to main page</a>
</div>
<svg class="graph">
</svg>
</div>
</div>
</div>
<div class="footer">
<p class="text footer-text">Copyright © TUT 2015</p>
</div>
</body>
</html>