静态页面练习——百度搜索页面

静态页面练习——百度搜索页面。前端萌新,个人练习记录帖。

实现效果如下:静态页面练习——百度搜索页面_第1张图片

html代码如下:



    
        
        
        百度搜索页面
        
        
    
    
        
        
新闻 hao123 地图 贴吧 视频 图片 登录
下载百度

下载百度app

有事搜一搜

©2022 Baidu 互联网药品信息服务资格证书 (京)-经营性-2017-0020

 css代码如下:

1.base.css

*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}

2.index.css

.head{
    margin-top: 19px;
    margin-left: 10px;
    text-align: left;
    font-size: 13px;
    text-decoration: underline;
}
.head span{
    margin-right: 15px;
    color: #333333;
    font-weight: bolder;
    cursor: pointer; /*手型鼠标*/
}
.head span:hover{
    color: #03C;
}
.head a{
    float: right;
    margin-right: 20px;
    padding: 5px;
    color: white;
    background-color: #436CE4;
    border-radius: 10px;
}
.search{
    margin-top: 25px;
    text-align: center;
}
.img-box{
    margin-bottom: 20px;
}
.search-box{
    width: 622px;
    height: 36px;
    margin: 30px auto;

}
.search-box input{
    float: left;
    width: 482px;
    height: 36px;
    padding-left: 10px;
    border: none;
    outline: none;
    color: #999999;
}
input[type=input] {
    width: 492px;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    border: 3px solid #ccc;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
  }
input[type=input]:focus{
    border: 2px solid #555;
    background-color: lightblue;
}
.search-box a{
    float: left;
    width: 130px;
    height: 37px;
    border: none;
    line-height: 36px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: blue;
}
.add{
    margin-top: 90px;
    text-align: center;
    font-size: 14px;
    color: #999999;
}
.add img{
    width: 90px;
    height: 90px;
    text-align: center;
}
.qr-code p{
    color: #333333;
    font-size: 16px;
}
.bottom{
    margin-top: 70px;
    text-align: center;
    font-size: 10px;
    color: #999999;
}

你可能感兴趣的:(html,css)