使用SVG文件
<embed>
使用embed標簽,將svg文件以媒體形式插入html。
Coding
<embed src="imooc.svg" width="1024" height="768" type="image/svg+xml"
pluginspage="http://www.adobe.com/svg/viewer/install/" />
<object>
使用object標簽,將svg文件以媒體對象形式插入html。
Coding
<object data="imooc.svg" width="1024" height="768" type="image/svg+xml"
codebase="http://www.adobe.com/svg/viewer/install/" />
<iframe>
使用iframe標簽,將svg文件以網頁文件形式插入html。
Coding
<iframe src="imooc.svg" width="1024" height="768"></iframe>
<img>
使用img標簽,將svg文件以圖形圖像文件形式插入html。
Coding
<img src="imooc.svg">
嵌入SVG結構
<svg>
使用svg標簽直接將svg代碼插入到html中。
Coding
<html>
<body>
<svg viewBox="0 0 100 50" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="30" height="30" stroke="#C7000B" />
</svg>
</body>
</html>