复制代码代码如下: ?xml version="1.0" encoding="UTF-8"? !DOCTYPE html html head !-- meta content="text/html; charset=utf-8" http-equiv="Content-Type" / -- title My First SVG Page /title /head body svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200px" height="200px" rect x="0" y="0" width="100%" height="100%" fill="none" stroke="black"/ circle cx="100" cy="100" r="50" / /svg /body /html
复制代码代码如下: !DOCTYPE html html head title My First SVG Page /title /head body object data="sun.svg" type="image/svg+xml" width="300px" height="300px" !-- Implement fallback code here, or display a message: -- p Your browser does not support SVG - please upgrade to a modern browser. /p /object img src="sun.svg" alt="svg not supported!" / /body /html