Thursday, August 28, 2014

SVG: Scalable Vector Graphics

Was messing up with a logo of my own. And I was able to come up with this:
Then I figured, there's SVG. And so I learned, and came up with this:

<svg width="150" height="150" >
<rect
x="0"
y="0"
width="150"
height="150"
style="fill:white;stroke:black;stroke-width:20;opacity:1"
/>
<rect
x="25"
y="25"
width="100"
height="10"
style="fill:white;stroke:black;stroke-width:20;opacity:1"
/>
<rect
x="70"
y="55"
width="10"
height="70"
style="fill:white;stroke:black;stroke-width:20;opacity:1"
/>
</svg>

Scalable Vector Graphics are fascinating!

Happy coding!