32 lines
808 B
HTML
32 lines
808 B
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" />
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
<title>D3 mit JavaScript</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Duolingo XP nach Sprache</h1>
|
|
<h2>JavaScript</h2>
|
|
<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>
|