<html>
<head>
<title>SVG PATH</title>
</head>
<body>
<h2>Example for SVG Paths </h2>
<svg width="300" height="220" stroke-width="10" stroke="orange">
<path d="M350 250 L360 120 H250 -30 V0 10"/>
</svg><hr>
<svg width="300" height="220" stroke-width="10" stroke="orange">
<path d="M 50 80 Q 195 10 80 180"/>
</svg>
</body>
</html>