HTML5 a line using SVG examples




HTML5 a line using SVG examples

<!DOCTYPE html>
<html>
   <head>
      <title>Create a Line with HTML5 SVG examples</title>
      <style type="text/css">
         svg  {
            border: 2px solid #000;
         }
      </style>
   </head>
   <body>
      <svg width="300" height="200">
         <line x1="50" y1="50" x2="250" y2="150"
         style="stroke:blue; stroke-width:3;" />
      </svg>
   </body>
</html>

Output