美文网首页
淘宝女装分类页面

淘宝女装分类页面

作者: Tn299 | 来源:发表于2019-04-09 18:59 被阅读0次

题目

1.需求说明
(1) .使用<div>和标题等HTML标签编辑页面
(2) .女装各分类名称前的图片使用背景图片的方式实现,标题字体大小 为18px,加粗显示
(3) .分类内容字体大小 为12px,超链接文本字体颜色为黑色,无下划线,当鼠标移至超链接文本上时字体颜色为橙色(#F60),并且显示下划线。
(4) .使用外部样式表创建页面样式
(5) .页面中其他效果见效果图

代码

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<link href="淘宝女装分类.css" rel="stylesheet" type="text/css">
</head>

<body>
<div>
 <div>
   <p class="bt_1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;夏季流行</p>
   <hr>
   <p>
      <a href="#">夏季新品</a> &nbsp;&nbsp;
      <a href="#">雪纺裙</a> &nbsp;&nbsp; 
      <a href="#">短袖T</a>&nbsp;&nbsp;
      <a href="#">铅笔裤</a>&nbsp;&nbsp;
      <a href="#">短裤</a>&nbsp;&nbsp;
      <a href="#">短袖衬衫</a> &nbsp;&nbsp;
      <a href="#">小脚牛仔裤</a><br/> 
      <a href="#">开衫</a>&nbsp;&nbsp;
      <a href="#">蕾丝/雪纺衫</a>&nbsp;&nbsp;
      <a href="#">韩版外套</a>&nbsp;&nbsp;
      <a href="#">小西装</a>&nbsp;&nbsp;
      <a href="#">中长款裙</a>
   </p>
 </div>
 <div>
   <p class="bt_2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;上装</p>
   <hr>
   <p>
      <a href="#">T恤</a> &nbsp;&nbsp;
      <a href="#">衬衫</a> &nbsp;&nbsp; 
      <a href="#">针织衫</a>&nbsp;&nbsp;
      <a href="#">长袖T</a>&nbsp;&nbsp;
      <a href="#">韩版T</a>&nbsp;&nbsp;
      <a href="#">情侣衫</a> &nbsp;&nbsp;
      <a href="#">雪纺衬衫</a><br/> 
      <a href="#">韩版衬衫 </a>&nbsp;&nbsp;
      <a href="#">防晒衣</a>&nbsp;&nbsp;
      <a href="#">休闲套装</a>&nbsp;&nbsp;
      <a href="#">卫衣</a>&nbsp;&nbsp;
      <a href="#">背心/吊带 </a> 
   </p>
 </div>
 <div>
   <p class="bt_3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;裙子</p>
   <hr>
   <p>
      <a href="#">连衣裙</a> &nbsp;&nbsp;
      <a href="#">半身裙</a> &nbsp;&nbsp; 
      <a href="#">长裙</a>&nbsp;&nbsp;
      <a href="#">短袖裙</a>&nbsp;&nbsp;
      <a href="#">蕾丝连衣裙</a>&nbsp;&nbsp;
      <a href="#">长袖裙</a> &nbsp;&nbsp;
      <a href="#">无袖/背心裙</a><br/> 
      <a href="#">A字裙</a>&nbsp;&nbsp;
      <a href="#">牛仔裙</a>&nbsp;&nbsp;
      <a href="#">半身中长裙</a>&nbsp;&nbsp;
      <a href="#">半身短裙</a>&nbsp;&nbsp;
      <a href="#">包臀裙</a>
   </p>
 </div>
 <div>
   <p class="bt_4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;裤子</p>
   <hr>
   <p>
      <a href="#">裤子</a> &nbsp;&nbsp;
      <a href="#">休闲裤</a> &nbsp;&nbsp; 
      <a href="#">牛仔裤</a>&nbsp;&nbsp;
      <a href="#">打底裤</a>&nbsp;&nbsp;
      <a href="#">长裤</a>&nbsp;&nbsp;
      <a href="#">哈伦裤</a> &nbsp;&nbsp;
      <a href="#">阔腿裤</a><br/> 
      <a href="#"> 短裤/热裤</a>&nbsp;&nbsp;
      <a href="#">连体裤</a>&nbsp;&nbsp;
      <a href="#">七/九分裤</a>&nbsp;&nbsp;
      <a href="#">牛仔短裤</a>&nbsp;&nbsp;
      <a href="#">西装裤</a>
   </p>
 </div>
 <div>
   <p class="bt_5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;其他女装</p>
   <hr>
   <p>
      <a href="#">胖M装 </a> &nbsp;&nbsp;
      <a href="#">中老年</a> &nbsp;&nbsp; 
      <a href="#">婚纱</a>&nbsp;&nbsp;
      <a href="#">礼服</a>&nbsp;&nbsp;
      <a href="#">旗袍</a>&nbsp;&nbsp;
      <a href="#">夜店</a> &nbsp;&nbsp;
      <a href="#">舞台装</a><br/> 
      <a href="#">唐装</a>&nbsp;&nbsp;
      <a href="#">职业装</a>&nbsp;&nbsp;
      <a href="#">全球购</a>&nbsp;&nbsp;
      <a href="#">羊绒衫</a>&nbsp;&nbsp;
      <a href="#">毛衣</a> &nbsp;&nbsp;
      <a href="#">呢大衣</a>&nbsp;&nbsp;
      <a href="#">羽绒服</a>
   </p>
 </div>
</div>
</body>

css代码

.bt_1
{
    background-image:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%901/dress01.png);
    background-repeat:no-repeat;
    font-size:18px;
    font-weight:bold;
    background-position:left}

a{
    font-size:12px;
    text-decoration:none;
    color:#000;}
a:hover
{
    color:#F60;
    text-decoration:underline;}
.bt_2
{
    background-image:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%901/dress02.png);
    background-repeat:no-repeat;
    font-size:18px;
    font-weight:bold;
    background-position:left}
.bt_3
{
    background-image:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%901/dress03.png);
    background-repeat:no-repeat;
    font-size:18px;
    font-weight:bold;
    background-position:left}
.bt_4
{
    background-image:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%901/dress04.png);
    background-repeat:no-repeat;
    font-size:18px;
    font-weight:bold;
    background-position:left}
.bt_5
{
    background-image:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%901/dress05.png);
    background-repeat:no-repeat;
    font-size:18px;
    font-weight:bold;
    background-position:left}

效果图

image.png

相关文章

  • 淘宝女装分类页面

    题目 1.需求说明(1) .使用 和标题等HTML标签编辑页面(2) .女装各分类名称前的图片使用背景图片的方式实...

  • 贵的东西一定是好的吗

    突然发现好久没有逛淘宝了,于是,鼠标移动,bingo进去了。 一张女装的页面,看到了一件喜欢的裙子,再看价格,九百...

  • 淘宝女装宣言

    萝莉范儿的小花边,渴望的不是你的保护,而是你的占有。 小清新的白色连衣裙,期待的不是山楂树,而是莽撞的古惑仔。 职...

  • 本周品牌事件盘点 | 8.3-8.9

    编辑 | 江佩文 校对 | 曹雪雷 01 淘宝女装“戎美”创业板IPO申请获受理 近日,淘宝女装品牌戎美的创业板I...

  • 【案例】内容营销实力逆袭之女装篇

    一、店铺简介: 淘宝女装/女士精品第四层级店铺,女装类目,主营棉麻文艺轻复古女装。“宠辱不惊,看庭前花开花落;去留...

  • 淘宝分类

    https://www.taobao.com/tbhome/page/market-list?spm=a21bo....

  • 一个在淘宝上卖衣服的为啥那么赚钱?

    中国淘宝女装品牌韩都衣舍是怎么在短时间内成为中国淘宝女装品牌第一呢? 主要有以下几点 1、老板具有创新的思维。 韩...

  • 一次就好

    淘宝店新款女装57790905.喜欢的可以支持一下,谢谢

  • 淘宝女装店铺短评

    淘宝N年的经历,可以说是阅历无数。 通常看一家店铺,就大概知道是哪种风格。 于是,我把它总结出来,提供给大家。 (...

  • 淘宝女装店铺推荐

    BANA小肥的外贸衣铺新店 衣服很便宜,很适合学生党哦,买过几次,也还可以。关键是超级平价啊。 酱果shop 你真...

网友评论

      本文标题:淘宝女装分类页面

      本文链接:https://www.haomeiwen.com/subject/xhgiiqtx.html