1、圆形,椭圆,折线
<style>
.line1{
stroke: black;
stroke-width: 3px;
}
.line2{
stroke: red;
stroke-width: 5px;
}
polyline{
fill: transparent;
stroke: blueviolet;
stroke-width: 3px;
}
</style>
</head>
<body>
<svg width="500px" height="300px" style="border: 1px solid">
<circle r="50" cx="50" cy="220"></circle> <!-- 圆形 -->
<ellipse rx="100" ry="30" cx="400" cy="200"></ellipse><!-- 椭圆 -->
<polyline points="0 0,50 50,50 100,100 100,100 50"></polyline><!-- 折线 -->
</svg>
</body>