HOW do I make the pink box go back and forth?
I want to make the pink box go back and forth in the center while the blue box continues to loop. THEN I want to change the boxes out for photos. ANY HELP CORRECTIONS WOULD BE APPRECIATED. Thank you in advance!! Code Below: <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <svg width="1000" height="250"> <rect width="150" height="150" fill="blue"> <animate attributeName="x" from="0" to="350" dur="2s" fill="freeze" repeatCount="indefinite"/> </rect> </svg> <svg width="1000" height="250"> <rect width="150" height="150" fill="magenta"> <animate attributeName="x" from="75" to="125" dur="2s" fill="freeze" <animate attributeName= "x" from "125" to="75" dur="2s" fill= "freeze" > repeatCount="indefinite"/> </rect> </svg> </body> </html>