How to draw a line with SVG two-dimensional vector graphics in HTML

1 Answer

0 votes
<svg width="600" height="600">    
   <line x1="100" y1="100" x2="250" y2="100" style="stroke:rgb(255,0,0);stroke-width:2"/>
</svg>  

 



answered Oct 11, 2019 by avibootz
...