Initial commit: stuff does not work

This commit is contained in:
2023-03-24 15:50:44 +01:00
parent b16f3ebea1
commit df29fd11ef
2 changed files with 223 additions and 0 deletions

28
index.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.node {
stroke: #fff;
stroke-width: 1.5px;
opacity: 0.5;
}
.link {
stroke: #999;
stroke-opacity: .6;
}
</style>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.2/d3.min.js" defer></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.2/d3.js" defer></script>
<script src="./script.js" defer></script>
</head>
<body>
</body>
</html>