-
Notifications
You must be signed in to change notification settings - Fork 0
/
news-analysis.html
65 lines (65 loc) · 1.51 KB
/
news-analysis.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" />
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/maps/highmaps.js"></script>
<script src="js/modules/data.js"></script>
<script src="js/modules/drilldown.js"></script>
<script src="js/modules/exporting.js"></script>
<script src="js/ner.js"></script>
<!--<script src="js/ner-map.js"></script>-->
<title>News Analysis</title>
<style>
#main{
width: 900px;
height: 600px;
margin: auto;
}
#date{
width: inherit;
}
.articles{
width: 600px;
height: 250px;
overflow-y: scroll;
overflow-x: hidden;
padding-right: 20px;
background-color: none;
}
#map {
height: 600px;
width: 560px;
margin: 0 auto;
}
.summary{
text-align: justify;
}
.loading {
margin-top: 10em;
text-align: center;
color: gray;
}
#bar-graph{
height: 550px;
width: 560px;
margin: 0 auto;
margin-top: 50px;
margin-bottom: 50px;
}
</style>
</head>
<body>
<div id="main">
<div id="date">
<p>Date: <input id="datepicker" type="text" /></p>
</div>
<div id="bar-graph"></div>
<div id="map"></div>
<div class="articles"></div>
</div>
</body>
</html>