前端小兔鲜儿

day09-小兔鲜儿

01-搭建项目目录

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-AmuQIf9B-1691944172572)(assets/1680342815532.png)]

  • xtx-pc
    • images 文件夹:存放固定使用的图片素材,例如:logo、样式修饰图等等
    • uploads 文件夹:存放非固定使用的图片素材,例如:商品图、宣传图需要上传的图片
    • iconfont 文件夹:字体图标素材
    • css 文件夹:存放 CSS 文件(link 标签引入)
      • base.css:基础公共样式
      • common.css:各个网页相同模块的重复样式,例如:头部、底部
      • index.css:首页 CSS 样式
    • index.html:首页 HTML 文件

引入样式表

<link rel="stylesheet" href="./iconfont/iconfont.css">
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/index.css">

02-网页头部SEO三大标签

SEO:搜索引擎优化,提升网站百度搜索排名

提升SEO的常见方法:

  1. 竞价排名
  2. 将网页制作成html后缀
  3. 标签语义化(在合适的地方使用合适的标签)
  4. ……

网页头部 SEO 标签:

  • title:网页标题标签
  • description:网页描述
  • keywords:网页关键词

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-q6PPQaoY-1691944172573)(assets/1680342859110.png)]


<meta name="description" content="小兔鲜儿官网,致力于打造全球最大的食品、生鲜电商购物平台。">

<meta name="keywords" content="小兔鲜儿,食品,生鲜,服装,家电,电商,购物">
<title>小兔鲜儿-新鲜、惠民、快捷!title>

03-Favicon图标

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-NNNJIyni-1691944172574)(assets/1680342897355.png)]

Favicon 图标:网页图标,出现在浏览器标题栏,增加网站辨识度。

图标:favicon.ico,一般存放到网站的根目录里面

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-yW8plKht-1691944172575)(assets/1680342907910.png)]


<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">

04-版心

common.css

/* 版心 */
.wrapper {
  margin: 0 auto;
  width: 1240px;
}

05-快捷导航-布局

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-MDHpgWVg-1691944172576)(assets/1680343012434.png)]

HTML结构


<div class="shortcut">
  <div class="wrapper">1div>
div>

CSS样式

/* 快捷导航 */
.shortcut {
  height: 52px;
  background-color: #333;
}

.shortcut .wrapper {
  display: flex;
  justify-content: flex-end;
  height: 52px;
  background-color: pink;
}

06-快捷导航-内容

HTML结构

<ul>
  <li><a href="#" class="login">请先登录a>li>
  <li><a href="#">免费注册a>li>
  <li><a href="#">我的订单a>li>
  <li><a href="#">会员中心a>li>
  <li><a href="#">帮助中心a>li>
  <li><a href="#">在线客服a>li>
  <li><a href="#"><span class="iconfont icon-mobile-phone">span>手机版a>li>
ul>

CSS样式

.shortcut ul {
  display: flex;
  line-height: 52px;
}

.shortcut li a {
  padding: 0 15px;
  border-right: 1px solid #999;
  font-size: 14px;
  color: #fff;
}

.shortcut li:last-child a {
  border-right: 0;
}

.shortcut li .iconfont {
  margin-right: 4px;
  vertical-align: middle;
}

.shortcut li .login {
  color: #5EB69C;
}

07-头部-布局

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-DhjYY6WG-1691944172577)(assets/1680343169749.png)]

HTML结构


<div class="header wrapper">
  
  <div class="logo">logodiv>
  
  <div class="nav">导航div>
  
  <div class="search">搜索div>
  
  <div class="cart">购物车div>
div>

CSS样式

/* 头部 */
.header {
  display: flex;
  margin-top: 22px;
  margin-bottom: 22px;
  height: 88px;
  background-color: pink;
}

08-头部-logo

HTML结构


<div class="logo">
  <h1><a href="#">小兔鲜儿a>h1>
div>

CSS样式

/* logo */
.logo {
  margin-right: 40px;
  width: 200px;
  height: 88px;
  /* background-color: skyblue; */
}

.logo a {
  display: block;
  width: 200px;
  height: 88px;
  background-image: url(../images/logo.png);
  font-size: 0;
}

09-头部-导航

HTML结构

<ul>
  <li><a href="#">首页a>li>
  <li><a href="#">生鲜a>li>
  <li><a href="#">美食a>li>
  <li><a href="#">餐厨a>li>
  <li><a href="#">电器a>li>
  <li><a href="#">居家a>li>
  <li><a href="#">洗护a>li>
  <li><a href="#">孕婴a>li>
  <li><a href="#">服装a>li>
ul>

CSS样式

/* 导航 */
.nav {
  margin-top: 33px;
  margin-right: 28px;
}

.nav ul {
  display: flex;
}

.nav li {
  margin-right: 47px;
}

.nav li a {
  padding-bottom: 10px;
  /* background-color: skyblue; */
}

.nav li a:hover {
  border-bottom: 2px solid #5EB69C;
  color: #5EB69C;
}

10-头部-搜索

HTML结构


<div class="search">
  <span class="iconfont icon-search">span>
  <input type="text" placeholder="搜一搜">
div>

CSS样式

/* 搜索 */
.search {
  display: flex;
  margin-top: 33px;
  margin-right: 45px;
  width: 170px;
  height: 34px;
  border-bottom: 2px solid #F4F4F4;
}

.search .iconfont {
  margin-right: 8px;
  font-size: 18px;
  color: #ccc;
}

.search input {
  /* 浏览器优先生效 input 标签的默认宽度,所以 flex:1 不生效 */
  /* 解决办法:重置 input 默认宽度 → width:0 */
  flex: 1;
  width: 0;
}

.search input::placeholder {
  font-size: 16px;
  color: #ccc;
}

11-头部-购物车

HTML结构


<div class="cart">
  <span class="iconfont icon-cart-full">span>
  <i>2i>
div>

CSS样式

/* 购物车 */
.cart {
  position: relative;
  margin-top: 32px;
}

.cart .iconfont {
  font-size: 24px;
}

.cart i {
  position: absolute;
  top: 1px;
  /* right 定位右对齐:如果文字多了,向左撑开,可能盖住其他的内容 */
  /* right: 1px; */
  /* left 定位左对齐:文字多了,向右撑开 */
  left: 15px;
  padding: 0 6px;
  height: 15px;
  background-color: #E26237;
  border-radius: 8px;
  font-size: 14px;
  color: #FFFEFE;
  line-height: 15px;
}

12-底部-布局

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-JKGcyDMg-1691944172577)(assets/1680343743595.png)]

HTML结构


<div class="footer">
  <div class="wrapper">
    
    <div class="service">服务div>
    
    <div class="help">帮助中心div>
    
    <div class="copyright">版权div>
  div>
div>

CSS样式

/* 底部 */
.footer {
  height: 580px;
  background-color: #F5F5F5;
}

/* 服务 */
.service {
  padding: 60px 0;
  height: 178px;
  border-bottom: 1px solid #E8E8E8;
}

/* 帮助中心 */
.help {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  height: 300px;
  background-color: pink;
}

13-底部-服务区域

HTML结构

<ul>
  <li>
    <h5>h5>
    <p>价格亲民p>
  li>
  <li>
    <h5>h5>
    <p>物流快捷p>
  li>
  <li>
    <h5>h5>
    <p>品质新鲜p>
  li>
  <li>
    <h5>h5>
    <p>售后无忧p>
  li>
ul>

CSS结构

.service ul {
  display: flex;
  justify-content: space-evenly;
}

.service li {
  display: flex;
  width: 190px;
  height: 58px;
  /* background-color: pink; */
}

.service li h5 {
  margin-right: 20px;
  width: 58px;
  height: 58px;
  background-image: url(../images/sprite.png);
}

.service li p {
  font-size: 28px;
  line-height: 58px;
}

.service li:nth-child(2) h5 {
  background-position: 0 -58px;
}
.service li:nth-child(3) h5 {
  background-position: 0 -116px;
}
.service li:nth-child(4) h5 {
  background-position: 0 -174px;
}

14-底部-帮助中心-左侧

HTML结构

<div class="left">
  <dl>
    <dt>购物指南dt>
    <dd><a href="#">购物流程a>dd>
    <dd><a href="#">支付方式a>dd>
    <dd><a href="#">售后规则a>dd>
  dl>
  <dl>
    <dt>配送方式dt>
    <dd><a href="#">配送运费a>dd>
    <dd><a href="#">配送范围a>dd>
    <dd><a href="#">配送时间a>dd>
  dl>
  <dl>
    <dt>关于我们dt>
    <dd><a href="#">平台规则a>dd>
    <dd><a href="#">联系我们a>dd>
    <dd><a href="#">问题反馈a>dd>
  dl>
  <dl>
    <dt>售后服务dt>
    <dd><a href="#">售后政策a>dd>
    <dd><a href="#">退款说明a>dd>
    <dd><a href="#">取消订单a>dd>
  dl>
  <dl>
    <dt>服务热线dt>
    <dd><a href="#">在线客服<span class="iconfont icon-customer-service">span>a>dd>
    <dd><a href="#">客服电话 400-0000-000a>dd>
    <dd><a href="#">工作时间 周一至周日 8:00-18:00a>dd>
  dl>
div>

CSS样式

/* left */
.help .left {
  display: flex;
}

.help .left dl {
  margin-right: 84px;
}

.help .left dl:last-child {
  margin-right: 0;
}

.help .left dt {
  margin-bottom: 30px;
  font-size: 18px;
}

.help .left dd {
  margin-bottom: 10px;
}

.help .left a {
  color: #969696;
}

.help .left .iconfont {
  color: #5EB69C;
}

15-底部-帮助中心-右侧

HTML结构

<div class="right">
  <ul>
    <li>
      <div class="pic"><img src="./images/wechat.png" alt="">div>
      <p>微信公众号p>
    li>
    <li>
      <div class="pic"><img src="./images/app.png" alt="">div>
      <p>APP下载二维码p>
    li>
  ul>
div>

CSS样式

/* right */
.help .right ul {
  display: flex;
}

.help .right li:first-child {
  margin-right: 55px;
}

.help .right .pic {
  margin-bottom: 10px;
  width: 120px;
  height: 120px;
}

.help .right p {
  color: #969696;
  text-align: center;
}

16-底部-版权

HTML结构

<p>
  <a href="#">关于我们a>|
  <a href="#">帮助中心a>|
  <a href="#">售后服务a>|
  <a href="#">配送与验收a>|
  <a href="#">商务合作a>|
  <a href="#">搜索推荐a>|
  <a href="#">友情链接a>
p>
<p>CopyRight © 小兔鲜p>

CSS样式

/* 版权 */
.copyright {
  text-align: center;
}

.copyright p {
  margin-bottom: 10px;
  color: #A1A1A1;
}

.copyright p a {
  margin: 0 10px;
  color: #A1A1A1;
}

你可能感兴趣的:(前端)