- Differences Between SVG and Canvas
- Introduction to SVG
- Surviving the Zombie Apocalypse with HTML5 and SVG:
Part 1, Part 2 (Text, Paths and Basic Animation), Part 3 (Manipulating SVG With JavaScript) and Part 4 (Dynamic SVG and Path Animation). - Using SVG
<object data="img/logo.svg" type="image/svg+xml"> <a href="img/logo.svg"> <!--[if lte IE 8]> <img src="img/logo.png" alt=""> <![endif]--> </a> </objetct>and/or
<object data="path/to/foo.svg"> <img src="path/to/foo.jpg"> or other arbitrary HTML here </object>
for Kindle
.defaultcontent { display: block; } .mobicontent { display: none; } @media amzn-mobi { .defaultcontent { display: none; } .mobicontent { display: block; } } <svg class="defaultcontent" xmlns="http://www.w3.org/2000/svg" version="1.1"> <circle cx="100" cy="50" r="40" stroke="black" fill="red" /> </svg> <img class="mobicontent" src="circleimage.jpg"> - SVG Optimiser
- Base64 encoder and decoder
- Vector Markup Language (VML)
- HTML5 – Canvas
- How to make a flowchart/diagram using only HTML and CSS