-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (45 loc) · 1017 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
54
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FCC tree map</title>
<style>
body {
text-align: center;
}
h1#title {
color: darkblue;
}
#description {
color: darkblue;
margin-bottom: 1rem;
}
rect {
opacity: 1;
stroke: white;
}
text {
font-family: "Helvetica Neue", Helvetica, sans-serif;
fill: black;
font-size: 10px;
text-anchor: start
}
#legend {
margin-top: 1.5rem;
}
#tooltip {
position: absolute;
padding: 5px;
background: white;
border: 1px solid gray;
pointer-events: none;
}
</style>
</head>
<body>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="myCode.js"></script>
<!-- <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> -->
</body>
</html>