Svg Preview

<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
<!-- Outline of the cat's face -->
<circle cx="100" cy="100" r="80" fill="none" stroke="black" stroke-width="2" />

<!-- Pointy Ears -->
<polygon points="20,20,30,60 45,40" fill="none" stroke="black" stroke-width="2" />
<polygon points="170,20,160,50,140,30" fill="none" stroke="black" stroke-width="2" />

<!-- Eyes -->
<circle cx="70" cy="80" r="10" fill="none" stroke="black" stroke-width="2" />
<circle cx="130" cy="80" r="10" fill="none" stroke="black" stroke-width="2" />

<!-- Nose -->
<circle cx="100" cy="110" r="5" fill="none" stroke="black" stroke-width="2" />

<!-- Mouth -->
<path d="M 70 130 Q 100 150, 130 130" stroke="black" fill="none" stroke-width="2" />

<!-- Whiskers on the left -->
<path d="M 10 110 Q 50 110, 70 110" stroke="black" fill="none" stroke-width="2" />
<path d="M 10 130 Q 50 130, 70 130" stroke="black" fill="none" stroke-width="2" />
<path d="M 10 150 Q 50 140, 70 140" stroke="black" fill="none" stroke-width="2" />

<!-- Whiskers on the right -->
<path d="M 130 110 Q 150 110, 190 110" stroke="black" fill="none" stroke-width="2" />
<path d="M 130 130 Q 150 130, 190 130" stroke="black" fill="none" stroke-width="2" />
<path d="M 130 140 Q 150 140, 190 150" stroke="black" fill="none" stroke-width="2" />
</svg>