-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (30 loc) · 813 Bytes
/
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
<html>
<head>
<meta charset="utf-8">
<title>News similarity Visualizations</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
.node {
stroke-width: 0;
}
.link {
stroke: #999;
stroke-opacity: .6;
}
</style>
</head>
<body>
<div id="viz-list">
<h1>Visualizations:</h1>
<ul>
<li><a href="viz/network.html">Network visualizations</a>: shows news article similarity in a network graph.</li>
<li><a href="viz/week.html">Week visualization:</a>: shows how often a given news item is discussed throughout a week.</li>
</ul>
</div>
<center>
<p id="date_title" style="font-size:x-large"></p>
<p id="entry_text" style="font-style:italic;font-size:small;visibility:hidden">NO_TEXT</p>
<div id="graph"></div>
</center>
</body>
</html>