Generate an SVG of a pelican riding a bicycle
Here's an SVG illustration of a pelican riding a bicycle. The design features a stylized pelican with a large beak and pouch, seated on a bicycle with a simple frame and wheels. The pelican is positioned in a riding stance with one foot on the pedal, and the bicycle is tilted slightly to suggest motion.
<svg width="300" height="200" xmlns="https://www.w3.org/2000/svg">
<!-- Bicycle Frame -->
<line x1="50" y1="120" x2="120" y2="120" stroke="black" stroke-width="4"/>
<line x1="120" y1="120" x2="160" y2="80" stroke="black" stroke-width="4"/>
<line x1="160" y1="80" x2="200" y2="120" stroke="black" stroke-width="4"/>
<line x1="120" y1="120" x2="160" y2="120" stroke="black" stroke-width="4"/>
<line x1="160" y1="120" x2="160" y2="150" stroke="black" stroke-width="4"/>
<line x1="160" y1="150" x2="130" y2="150" stroke="black" stroke-width="4"/>
<line x1="130" y1="150" x2="130" y2="120" stroke="black" stroke-width="4"/>
<!-- Wheels -->
<circle cx="120" cy="120" r="30" stroke="black" stroke-width="2" fill="none"/>
<circle cx="160" cy="120" r="30" stroke="black" stroke-width="2" fill="none"/>
<circle cx="120" cy="120" r="10" stroke="black" stroke-width="2" fill="none"/>
<circle cx="160" cy="120" r="10" stroke="black" stroke-width="2" fill="none"/>
<!-- Pedals -->
<line x1="130" y1="150" x2="140" y2="160" stroke="black" stroke-width="2"/>
<line x1="130" y1="150" x2="140" y2="140" stroke="black" stroke-width="2"/>
<!-- Pelican Body -->
<ellipse cx="160" cy="90" rx="25" ry="15" fill="white" stroke="black" stroke-width="1"/>
<!-- Pelican Head -->
<circle cx="185" cy="80" r="12" fill="white" stroke="black" stroke-width="1"/>
<!-- Pelican Beak -->
<polygon points="200,80 220,75 220,85" fill="orange" stroke="black" stroke-width="1"/>
<!-- Pelican Eye -->
<circle cx="190" cy="75" r="2" fill="black"/>
<!-- Pelican Pouch -->
<path d="M160,95 Q150,110 160,120 Q170,110 160,95" fill="white" stroke="black" stroke-width="1"/>
<!-- Pelican Legs -->
<line x1="150" y1="105" x2="145" y2="130" stroke="orange" stroke-width="2"/>
<line x1="170" y1="105" x2="175" y2="130" stroke="orange" stroke-width="2"/>
<!-- Pelican Feet -->
<line x1="145" y1="130" x2="140" y2="135" stroke="orange" stroke-width="1"/>
<line x1="145" y1="130" x2="150" y2="135" stroke="orange" stroke-width="1"/>
<line x1="175" y1="130" x2="180" y2="135" stroke="orange" stroke-width="1"/>
<line x1="175" y1="130" x2="170" y2="135" stroke="orange" stroke-width="1"/>
</svg>
- Bicycle: Simplified frame with wheels and pedals
- Pelican:
- Body (ellipse)
- Head (circle)
- Beak (orange triangle)
- Pouch (curved path)
- Legs and feet (lines)
- Styling: Black outlines with orange beak and legs for contrast
You can copy this code into an .svg
file or embed it directly in HTML to view the image. Let me know if you'd like a more detailed version or different styling!
Rendered: