12 lines
219 B
HTML
12 lines
219 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
svg {
|
|
width: 250px;
|
|
height: 250px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<svg>
|
|
<rect x="100" y="-50" width="100" height="100" fill="green"
|
|
transform="rotate(45)"/>
|
|
</svg>
|