Week 2- Simple logo in SVG - Business Web Technologies
This shows how to make a simple logo using SVG, an XML format for doing simple graphics that is now an HTML5 recommendation
HTML
<svg width="100" height="100" style="background-color:blue">
<circle cx="50" cy="50" r="45" style="fill:yellow"/>
<rect x="10" y="40" width="80" height="20" style="fill:green" />
logo
<polygon points="50,0 100,100 50,50 0,100" style="fill:red" />
</svg>