19 lines
490 B
HTML
19 lines
490 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Graph with Reflection on Code</title>
|
|
<style>
|
|
body { margin: 0; font-family: Arial, sans-serif; }
|
|
#graph-container { width: 100%; height: 100vh; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph-container"></div>
|
|
|
|
<!-- Load D3.js from CDN -->
|
|
<script src="https://d3js.org/d3.v7.min.js"></script>
|
|
<!-- Load the application bundle -->
|
|
<script type="module" src="../src/index.js"></script>
|
|
</body>
|
|
</html> |