Adsense
Popular Posts
- MySQL workbench -"Could not decrypt password cache"
- peer review (3)
- PHP, dump varailbes in a format way
- "Unusual traffic from your computer network" from blogger
- Install APXS in Redhat Linux
- JavaScript, remove trailing insignificant zeros after toFixed function
- Update member directory
- Set Windows path command line
- JavaScript: add days to current date
- DataTable table order by numeric, not by text
Tuesday, March 11, 2014
SVG in HTML
SVG stands for Scalable Vector Graphics.
SVG in HTML tutorial:
http://www.w3schools.com/svg/
Example code:
<!DOCTYPE html>
<html>
<body>
<h1> SVG Example</h1>
<svg width="250" height="250">
<circle cx="100" cy="100" r="80" stroke="red" stroke-width="10" fill="green" />
Sorry, your browser does not support inline SVG.
</svg>
</body>
</html>
Result:
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment