15 lines
281 B
HTML
15 lines
281 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<script type="module">
|
|
import * as d3 from "https://cdn.skypack.dev/d3@7";
|
|
|
|
const body = d3.selectAll("body");
|
|
</script>
|
|
</head>
|
|
<body>
|
|
simple d3 example
|
|
<script type="module">
|
|
</script>
|
|
</body>
|
|
</html>
|