Widget:CharlesSVG

Revision as of 14:52, 31 October 2023 by Tegnosis (talk | contribs) (Created page with "<html> <head> <script type = "text/javascript" src = "https://d3js.org/d3.v4.min.js"></script> <style> body { font-family: Arial; } </style> <...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<html>

  <head>
     <script type = "text/javascript" src = "https://d3js.org/d3.v4.min.js"></script>
     <style>
        body { font-family: Arial; }
     </style>
  </head>
  <body>
        <svg width = "300" height = "300">
           <line x1 = "100" y1 = "100" 
              x2 = "200" y2 = "200" style = "stroke:rgb(255,0,0);
              stroke-width:2"/>
        </svg>

  </body>

</html>