0
Fill in the blanks to add a line to the page,starting from coordinates 10,20 and ending at 50,100 :?
<svg width="500" height="5
3 Answers
- 1
<svg width="500" height="500">
<line x1="10" y1="20" x2="50" y2="100" style="stroke:red;stroke-width:2" />
</svg>