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>