Note: You are currently viewing documentation for Moodle 3.3. Up-to-date documentation for the latest stable version of Moodle is probably available here: James Neill/Moodle/Files/SVG.

User:James Neill/Moodle/Files/SVG: Difference between revisions

From MoodleDocs
m (New page: * [http://tracker.moodle.org/browse/MDL-15912 SVG] Instead try: <pre> object tags <object data="http://www.opera.com/img/svg/circles.svg" width="200" height="180" type="image/svg+xml" cod...)
 
(No difference)

Latest revision as of 23:34, 25 September 2008

Instead try:

object tags
<object data="http://www.opera.com/img/svg/circles.svg" width="200" height="180"
type="image/svg+xml"
codebase="http://www.adobe.com/svg/viewer/install/" />

or embed tags

<embed src="http://www.opera.com/img/svg/circles.svg" width="200" height="180"
type="image/svg+xml"
pluginspage="http://www.adobe.com/svg/viewer/install/" />

or iframes

<iframe frameborder="0" height="180" src="http://www.opera.com/img/svg/circles.svg" width="200"> </iframe>