The <line/> tag represents a line segment joining points (x1, y1) to (x2, y2).
1: <svg version="1.1" baseProfile="full" 2: xmlns="http://www.w3.org/2000/svg" 3: width="300px" height="200px" viewBox="0 0 300 200"> 4: 5: <line x1="10" y1="10" x2="290" y2="190" stroke="purple" stroke-width="20px"/> 6: <line x1="10" y1="50" x2="230" y2="190" stroke="green" stroke-width="10px"/> 7: 8: </svg> 9: