-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
59 lines (56 loc) · 1.51 KB
/
table.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title> Assignment 6 - Manoj Gopale </title>
<link href="./style/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- <script src="https://cscheid.net/courses/fal17/csc544/lecture-extras/lecture3/data.js"></script> -->
<div id="scatterplot_1">
</div>
<table>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
<tr>
<td> John </td>
<td> Doe </td>
</tr>
<tr>
<td> Jane </td>
<td> Doe </td>
</tr>
</thead>
</table>
<table>
<thead>
<tr>
<th> SATM </th>
<th> SATM </th>
<th> ACT </th>
<th> GPA </th>
</tr>
<tr>
<td> 500 </td>
<td> 498 </td>
<td> 34 </td>
<td> 3.5 </td>
</tr>
</thead>
</table>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://cscheid.net/courses/fal17/csc544/assignment_2/scores.js"></script>
<script src="https://cscheid.net/courses/fal17/csc544/assignment_3/ukDriverFatalities.js"></script>
<script src="https://d3js.org/d3-axis.v1.min.js"></script>
<script src="https://d3js.org/d3-color.v1.min.js"></script>
<script src="https://d3js.org/d3-interpolate.v1.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src="http://colorbrewer2.org/export/colorbrewer.js"></script>
<!-- <script src="./scripts/hw3_trial.js"></script> -->
<!-- <script src="./table.js"></script> -->
<script src="./table.js"></script>
</body>
</html>