实现百度首页功能的html代码示例

以下是一个简单的HTML代码,实现了类似于百度首页的布局和样式

<!DOCTYPE html>
<html>
<head>
  <title>百度一下,你就知道</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f5f5f5;
    }
    #header {
      background-color: #fff;
      box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }
    #logo {
      width: 80px;
      height: 30px;
      background-image: url('https://www.baidu.com/img/bd_logo1.png');
      background-size: cover;
    }
    #search-form {
      display: flex;
      align-items: center;
    }
    #search-input {
      width: 400px;
      height: 36px;
      border: none;
      padding: 0 10px;
      font-size: 16px;
    }
    #search-button {
      width: 100px;
      height: 36px;
      background-color: #3385ff;
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 16px;
      margin-left: 10px;
    }
    #footer {
      background-color: #ebebeb;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }
  </style>
</head>
<body>
  <div id="header">
    <div id="logo"></div>
    <form id="search-form">
      <input id="search-input" type="text" placeholder="输入关键词">
      <button id="search-button" type="submit">百度一下</button>
    </form>
  </div>
  <div id="footer">
    <p>©2023 Baidu <a href="#">使用百度前必读</a> <a href="#">百度经验</a> <a href="#">意见反馈</a></p>
  </div>
</body>
</html>

该代码实现了一个简单的页面布局,包含一个顶部导航栏和底部页脚。顶部导航栏包含百度的logo和一个搜索表单,底部页脚包含版权信息和相关链接。注意,由于百度的logo和其他资源受版权保护,因此该代码中使用的logo图片仅供演示用途,请勿在实际项目中使用。