40 lines
1.0 KiB
HTML
40 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<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" />
|
|
<link rel="icon" type="image/x-icon" href="../assets/favicon.png" />
|
|
<style>
|
|
* {
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
|
|
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
|
|
<title>D3 mit JavaScript</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div style="text-align: center; height: 24px">JavaScript</div>
|
|
<div id="js" style="width: 400px; height: 400px; margin: auto">
|
|
<div class="loading"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"d3": "https://cdn.skypack.dev/d3@7"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<script type="module" src="basic-example.js"></script>
|
|
</body>
|
|
</html>
|