Generate an SVG of a pelican riding a bicycle
<think>
Okay, the user wants an SVG of a pelican riding a bicycle. Let me start by visualizing how to combine these two elements. Pelicans have distinctive beaks and bodies, so I need to make sure those features are recognizable. The bicycle should be simple but clear.
First, I'll sketch the pelican. Maybe start with an ellipse for the body and a larger oval for the beak. The head could be a circle with an eye. For the bicycle, two circles for wheels, a rectangle for the frame, and some details like handlebars and pedals.
I need to position the pelican so it's sitting on the bicycle seat. The legs can be positioned near the pedals. Feathers could be represented with some wavy lines on the body. The beak might curve down, and maybe add a little fish for fun, though the user didn't mention that. Wait, they just said pelican riding a bike, so maybe no fish needed.
I should make sure the SVG is scalable and uses basic shapes. Use paths for more complex parts like the beak and feathers. Colors? Maybe a blue-gray for the pelican's body, orange for the beak and legs. The bicycle could be black with some gray wheels.
Check if all parts are connected properly. The pelican's body over the seat, wings maybe slightly spread for balance. Tail feathers could trail behind. The wheels need to look like they're moving, maybe add some spokes or a dynamic line.
Also, include SVG metadata and a viewBox for proper scaling. Keep the code clean with comments so it's understandable. Maybe add a background color or leave it transparent? Probably transparent since it's an icon.
Wait, should the pelican be facing forward? Yes, to show it's riding. The handlebars might have some turns. Let me think about the structure: path elements for curves, circles for wheels, rectangles or paths for frame. Maybe use a polyline for the chain.
Test the SVG in my mind: two wheels, frame connecting them, handlebars on the front. Pelican sitting with body over the back wheel, head looking forward. Legs near the front wheel. Feathers on the back.
I think that's a solid plan. Now translate this into SVG code with appropriate elements and attributes.
</think>
Here's an SVG of a stylized pelican riding a bicycle. You can copy and paste this code into an .svg file or embed it in HTML to view:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 150" width="400" height="300">
<!-- Bicycle -->
<circle cx="50" cy="120" r="15" fill="#333"/> <!-- Front wheel -->
<circle cx="130" cy="120" r="15" fill="#333"/> <!-- Back wheel -->
<rect x="60" y="95" width="70" height="10" fill="#000"/> <!-- Frame -->
<line x1="50" y1="120" x2="60" y2="95" stroke="#000" stroke-width="4"/> <!-- Handlebar -->
<line x1="130" y1="120" x2="100" y2="95" stroke="#000" stroke-width="4"/> <!-- Seat post -->
<rect x="65" y="105" width="20" height="4" fill="#999"/> <!-- Pedal -->
<!-- Pelican -->
<!-- Body -->
<ellipse cx="100" cy="95" rx="20" ry="15" fill="#4A90E2"/>
<!-- Head -->
<circle cx="85" cy="85" r="10" fill="#4A90E2"/>
<!-- Beak -->
<path d="M85,85 Q70,95 85,105" fill="#FF6F61"/>
<!-- Eye -->
<circle cx="82" cy="83" r="2" fill="#000"/>
<!-- Wings -->
<path d="M100,95 Q80,70 60,90" fill="none" stroke="#4A90E2" stroke-width="3"/>
<!-- Legs -->
<line x1="95" y1="110" x2="88" y2="130" stroke="#FFA500" stroke-width="4"/>
<line x1="105" y1="110" x2="112" y2="130" stroke="#FFA500" stroke-width="4"/>
<!-- Decorative feathers -->
<path d="M120,95 Q130,80 140,95" fill="none" stroke="#4A90E2" stroke-width="2"/>
<path d="M125,90 Q135,75 145,90" fill="none" stroke="#4A90E2" stroke-width="2"/>
</svg>- Bicycle: Two wheels, frame, handlebars, seat post, and a pedal.
- Pelican:
- Body (blue ellipse)
- Head with curved beak (orange)
- Eye (black circle)
- Wings (curved lines suggesting flight/riding motion)
- Legs positioned near the pedals
- Stylized Details: Feathers and bicycle frame give it a whimsical look.
- Add motion lines or a background.
- Use gradients for more depth.
- Include a fish in the beak for extra flair! 🐟
Let me know if you want an animated version or color tweaks!