Adsense
Popular Posts
- jQuery autocomplete scroll bar for dropdown menu
- JavaScript Arrays and Associate Arrays
- mod_auth_cas.so error: undefined symbol: SSL_connect
- Design date and signature box in Latex
- Install APXS in Redhat Linux
- JavaScript, remove trailing insignificant zeros after toFixed function
- jQuery, toggle the display
- Difference between state and props in React
- Set Windows path command line
- super(props) in React
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