-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (85 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<title>Project 1</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Custom styling -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<h1>South Carolina Basketball Starting 5</h1>
<ul class='row'>
<li><span id='silva' style='background:#ED3027;'></span>Chris Silva</li>
<li><span id='hassani' style='background:#A70800;'></span>Hassani Gravett</li>
<li><span id='campbell' style='background:#560400;'></span>Tre Campbell</li>
<li><span id='lawson' style='background:#656566;'></span>AJ Lawson</li>
<li><span id='kotsar' style='background:#000000;'></span>Maik Kotsar</li>
</ul>
</div>
</nav>
<!-- Bootstrap grid setup -->
<div class="container" style="display:inline">
<div class="row" style="display:inline">
<div id="chart-area" style="display:inline"></div>
</div>
</div>
<form>
<br>
Points Per Game:<br>
<input type="text" id="points" value="73.3"><br>
Rebounds Per Game:<br>
<input type="text" id="rebounds" value="36.3"><br>
Assists Per Game:<br>
<input type="text" id="assists" value="12.9">
</form>
<style type='text/css'>
h1 {
display: inline;
margin-top: 10px;
padding: 10px;
float: bottom;
}
ul {
display: inline;
margin-top: 10px;
float: right;
padding: 10px;
}
li {
display: block;
float: left;
width: 70px;
margin-bottom: 6px;
text-align: center;
font-size: 12px;
}
span {
display: block;
float: left;
height: 15px;
width: 70px;
}
form {
display: inline;
align: right;
position: absolute;
top: 80px;
left: 80%;
}
</style>
<!-- External JS libraries -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/d3.min.js"></script>
<!-- Custom JS -->
<script src="js/main.js"></script>
<!-- load the d3.js library -->
<script src="https://d3js.org/d3.v5.min.js"></script>
</body>
</html>
</html>