iphone icon |
<!--drawing iphone icon using SVG-->
<html>
<head> </head>
<body>
<h3>Drawing Graphic using SVG</h3>
<hr/>
<svg id="mysvg1"
width="400"
height="500"
style="border:2px solid blue;">
<!--outer rectangle-->
<rect x="80" y="50"
rx="15" ry="15"
width="230" height="400"
style=fill:black;
stroke-width:2;stroke:black;"/>
<!--inner rectangle-->
<rect x="95" y="80"
rx="15" ry="15"
width="200" height="325"
style=fill:white;
stroke-width:2;stroke:black;"/>
<!--Big circle-->
<circle cx="190" cy="428" r="20"
Stroke="black"
stroke-width="2"
fill="white"/>
<!--small circle-->
<circle cx="190" cy="65" r="10"
Stroke="black"
stroke-width="2"
fill="white"/>
</svg>
</body>
</html>
No comments:
Post a Comment