html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <h2>百度糯米-便宜实惠,品质保证,服务专业!"</h2> <img src="img/baidunuomei.png" > <ul> <li type="disc">麻辣烫/冒菜</li> <li type="disc">美食</li> <ol> <li type="circle">中餐/家常菜</li> <li type="circle">夏日饮品</li> <ul type="square"> <li>米芝莲:24元</li> <li>沪上阿姨:12.90元</li> <li>哆哆鲜奶吧:30元</li> <li>黄记玉米汁:80元</li> </ol> <li type="disc">创意菜/私房菜</li> </ul> <h3>联系人员客服:</h2> <ol> <li type="none">邮箱:nuomihelip@baidu.com</li> <li type="none">周一至周五 9:00-22:00</li> </ol> <h3>客服电话 免长途费</h3> <ol> <li type="none">4006-888-887</li> </ol> </body> </html> css body{font-size: 12px; font-family: "宋体"; color: #222;} body,h2,ul,li{padding:0;margin:0;list-style: none;} .all{ width: 300px; height: 200px; margin: 20px auto; } .head{ font-size: 12px; color: #fff; height: 30px; line-height: 30px; border-bottom: 5px solid #cc5200; background: #f60 url(../img/title_bg.png)no-repeat 11px 7px; padding-left: 34px; } .content{ padding: 25px 0 0 15px; background: #fff5ee; } .content li{ height: 26px; background: url(../img/li_bg.png)no-repeat left top; padding-left: 22px; } .content li a:link,.content li a:visited{ color: #666; text-decoration: none; } .content li a:hover{ color: #F60; }