The <svg> element defines the drawing area (canvas). You control size using width and height.

Example:

<svg width="200" height="150" xmlns="http://www.w3.org/2000/svg">
<rect width="200" height="150" fill="lightgray"/>
</svg>