index.html 511 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Egghead D3 v4</title>
  6. <script src="node_modules/d3/build/d3.js"></script>
  7. <style>
  8. #block {
  9. background: lightgray;
  10. border: 1px solid black;
  11. width: 100px;
  12. height: 100px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="block"></div>
  18. <script src="data/data.json"></script>
  19. <script src="src/responsivefy.js"></script>
  20. <script src="src/app.js"></script>
  21. </body>
  22. </html>