<!DOCTYPE html> | |
<html> | |
<body> | |
<p>This blue rectangle is drawn via SVG.</p> | |
<div style="width:600px;height:200px;background-color:lime; position:relative"> | |
<svg viewBox="0 0 300 100" preserveAspectRatio="xMidYMid"> | |
<<rect width="300" height="100" style="fill:rgb(0,0,255);stroke-width:3;stroke:rgb(0,0,0)" /> | |
</svg> | |
</body> |