The rect element is an SVG basic shape, used to create rectangles based on the position of a corner and their width and height. It may also be used to create rectangles with rounded corners.
<!DOCTYPE HTML> <html> <head> <title>SVG tutorial</title> </head> <body> <svg width="120" height="120"> <rect x="10" y="10" width="100" height="100"/> </svg> </body> </html>