-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (55 loc) · 1.55 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Salary Cap Explorer</title>
<meta charset="UTF-8">
<title>title</title>
<meta name="author" content="name">
<meta name="description" content="description here">
<meta name="keywords" content="keywords,here">
<style type="text/css">
#legend{
padding-left: 20px;
padding-top: 10px;
}
#form{
float:right;
}
#corp{
font-size:12px;
margin-left: 10px;
margin-right:0;
}
#corp, #author
{
display:inline;
}
#author{
font-size:12px;
float: right;
padding-right:5px;
}
#title{
text-align: center;
font-size: 250%;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v0.4.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v0.4.min.js"></script>
<div id ="wrapperAuthor">
<div id="corp"> an <b>Independentviz.com</b> creation</div> <div id="author"> by <a href="https://www.twitter.com/nathaniharris"><u> Nathan Harris</u></a> </div>
</div>
<h1 id='title'>NBA Salary Cap Explorer</h1>
<div id='form'></div>
<div id = 'root'></div>
<div id ='legend'></div>
<div id='explainer'></div>
<script src='salaryGraph.js' type='text/javascript'></script>
</body>
</html>