forked from cv/career-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 914 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Radar</title>
<script type="text/javascript" src="radars/data.js"></script>
<script type="text/javascript">var h = 900, w = 1200;</script>
<script type="text/javascript" src="radars/plot.js"></script>
<script type="text/javascript" src="lib/protovis-3.2/protovis-d3.2.js"></script>
<script type="text/javascript" src="lib/utils.js"></script>
<script type="text/javascript" src="lib/careerData.js"></script>
<script type="text/javascript" src="lib/radar.js"></script>
<style type="text/css" media="screen">
#fig {
height: 900px;
width: 1200px;
}
</style>
</head>
<body onload="init(h,w);">
<h1 id="title"></h1>
<div id="radar"></div>
</body>
</html>