我怎么能用svg做这个明星?我必须使用svg并尝试使用积分但不能正常工作.我不能使用元素路径.谢谢.
<!DOCTYPE html>
<html>
<body>
<svg width="100" height="100">
<circle cx="50" cy="50" r="45" fill="white" stroke="red" stroke-width="10" />
<circle cx="50" cy="50" r="30" stroke="red" stroke-width="10" fill="blue" />
<polygon points="50,25 30,80 75,40 25,40 70,70" style="fill:white;"/>
</svg>
</body>
</html>Run Code Online (Sandbox Code Playgroud)