案例:SVG案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>My first SVG</h1>
6
7
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
8
   <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
9
</svg> 
10
 
11
</body>
12
</html>