<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="400px" height="400px">
 <!-- MS 100 Algebra day one svg                  -->
 <!-- take the three squares in a horizontal row  -->
 <!-- and make three squares in a vertical row    -->
 <!-- then make three squares in a diagonal row   -->
 <!-- finally create a fourth rect and make a square arrangement -->
 <!-- Change only the x and y coordinates of the rect command    -->
 <title>Three in row</title>
  <g stroke="black" stroke-width="2px" fill="green" >
   <rect x="100" y="200" width="15" height="15" />
   <rect x="200" y="200" width="15" height="15" />
   <rect x="300" y="200" width="15" height="15" />
   
   <!-- The new stuff is below here! Type the line below in -->
   
   <path d="M 100,200 L 200,200 300,200 " />
   
  </g>
</svg>

