This commit is contained in:
2019-09-16 20:36:30 -06:00
commit 33714c6291
12 changed files with 749 additions and 0 deletions

34
hw2/hw2.html Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Homework 2</title>
<style>
circle {
fill: steelblue;
}
line{
stroke:darkGrey;
stroke-width:6;
}
.label{
fill:white;
font-weight: bold;
text-anchor: middle;
font-size: 16px;
letter-spacing: 3px;
}
</style>
<script src="https://d3js.org/d3.v4.js"></script>
<script src="js/Tree.js"></script>
<script src="js/Node.js"></script>
<script type="application/javascript" src="js/script.js"></script>
</head>
<body>
</body>
</html>