百度页面的制作

来源:互联网 发布:杀戮游戏网络电影 编辑:程序博客网 时间:2024/04/28 15:00

这是一个百度页面,可以在输入框中搜索,查询


<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title>百度一下,你就知道</title>
  <style>
   a{
    margin-right: 30px;
    font-weight: 700;
    color: black;
   }
   #main{
    /*居中显示*/
    margin: 0px auto;
    width: 500px;
    
   }
   #main>img{
    margin-bottom: 30px;
    margin-top: 50px;
    margin-left: 100px;
   }
   #wd{
    width: 400px;
    height: 30px;
   }
   #mit{
    width: 80px;
    height: 33px;
   }
  </style>
 </head>
 <body>
  <div id="top" style="text-align: right;margin-top: 15px;">
   <a href="https://hy.nuomi.com/?lf=2">糯米</a>
   <a href="http://news.baidu.com/">新闻</a>
   <a href="https://www.hao123.com/">好123</a>
   <a href="http://map.baidu.com/">地图</a>
   <a href="http://v.baidu.com/">视频</a>
   <a href="https://tieba.baidu.com/index.html">贴吧</a>
  </div>
  <div id="main">
   <img src="https://www.baidu.com/img/38270_b8c2a909848579fb12dc61f16ea9cde2.gif" />
   <form action="https://www.baidu.com/s">
    <input type="text" name="wd" id="wd"><input type="submit" value="百度一下" name="" id="mit"/></input>
   </form>
  </div>
 </body>
</html>


最后的效果图如下:




0 0