Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 272 Bytes

svg_out.md

File metadata and controls

16 lines (14 loc) · 272 Bytes

引入外部SVG文件

例:引入一个名为svg的外部文件

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<iframe src="svg.svg" width="1000" height="1000" frameborder="no"></iframe>
</body>
</html>