HTML代码写一个皮卡丘
时间: 2024-05-08 22:19:11 浏览: 40
很高兴能为你展示一个皮卡丘的HTML代码:
```html
<div style="width:150px;height:150px;border-radius:75px;background:#FEE24C;position:relative;">
<div style="width:70px;height:70px;border-radius:35px;background:#FF5747;position:absolute;top:30px;left:40px;">
</div>
<div style="width:20px;height:20px;border-radius:10px;background:white;position:absolute;top:35px;left:60px;">
</div>
<div style="width:20px;height:20px;border-radius:10px;background:white;position:absolute;top:35px;left:100px;">
</div>
<div style="width:50px;height:15px;background:black;position:absolute;top:60px;left:50px;">
</div>
<div style="width:50px;height:15px;background:black;position:absolute;top:60px;right:50px;">
</div>
<div style="width:60px;height:30px;border-radius:30px;background:white;position:absolute;top:70px;left:45px;">
</div>
<div style="width:9px;height:9px;border-radius:5px;background:black;position:absolute;top:75px;left:58px;">
</div>
<div style="width:9px;height:9px;border-radius:5px;background:black;position:absolute;top:75px;left:98px;">
</div>
<div style="width:55px;height:45px;border-radius:25px;background:#261A1C;position:absolute;top:90px;left:48px;">
</div>
</div>
```
希望你喜欢这个小小的皮卡丘!
阅读全文