HTML5-SVG-嵌入到html的几种方式

1.embed

1 <embed src="circle1.svg" type="image/svg+xml" />

2.object

1 <object data="circle1.svg" type="image/svg+xml"></object>

3.iframe

1 <iframe src="circle1.svg"></iframe>

4直接嵌入html

1 <html>
2 <body>
3     <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
4       <circle cx="100" cy="50" r="40" stroke="black"
5       stroke-width="2" fill="red"/>
6     </svg>
7 </body>
8 </html>
原文地址:https://www.cnblogs.com/hack0573/p/5589939.html