d3js starter 3

by glam

HTML

<html>

  <head>
    <title></title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js"></script>
  </head>

  <body>
    <div>
      <svg width="300" height="200" style="background: yellow">
        <line x1="100" y1="100" x2="200" y2="200"
          style="stroke:rgb(255, 0, 0);stroke-width:2"
        >
          
        </line>
      </svg>
    </div>
  </body>

</html>