<!DOCTYPE html>
<html>
<head>
<title>SVG Fundamentals 2022!</title>
<style>
body {
margin: 0;
}
svg {
background-color: #ccff00
; width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<svg width="400" height="300">
<circle
cx="25"
cy="25"
r="20"
fill="magenta"
></circle>
<circle
cx="75"
cy="25"
r="20"
fill="magenta"
></circle>
<circle
cx="125"
cy="25"
r="20"
fill="magenta"
></circle>