generated from DS4200-S23-Class/hw-06
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (37 loc) · 964 Bytes
/
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
<!DOCTYPE html>
<html lang='en'>
<head>
<link rel = 'stylesheet' href = 'style.css'>
<meta charset='utf-8'>
<script src = 'js/d3.v6.1.1/d3.min.js'></script>
<title>hw-06</title>
</head>
<body>
<h1>hw-06-D3-Brushing&Linking</h1>
<!-- create three equals columns on webpage -->
<div class="row">
<!-- left column -->
<div class="column">
<p>Petal_Length vs Sepal_Length</p>
<div id = 'vis1'></div>
</div>
<div class="column">
<p>Petal_Width vs Sepal_Width</p>
<div id = 'vis2'></div>
</div>
<div class="column">
<div id = 'vis3'></div>
</div>
</div>
<h2>Acknowledgement</h2>
<div>
<p1>
<ul>
<li>https://www.w3schools.com/jsref/met_document_getelementbyid.asp</li>
<li>https://www.w3schools.com/css/default.asp</li>
<li>https://www.geeksforgeeks.org/dom-document-object-model/</li>
</ul>
</p1>
<script src="main.js"></script>
</body>
</html>