<?xml version="1.0"?>
<svg viewBox="0 0 300 300" width="300" height="300">
	<!-- Generate a background -->
	<g>
		<path style="fill: pink" d="M0,0 h300 v300 h-300 z"/>
	</g>
	<!-- Some shapes and colors -->
	<g>
		<circle style="fill: green; fill-opacity: 0.5" cx="150" cy="150" r="50"/>
		<rect style="fill: blue; stroke: white" x="50" y="50" width="100" height="100"/>
		<text style="fill: red; font-size: 24pt" x="25" y="250">Welcome to SVG!</text>
	</g>
</svg>
