<!DOCTYPE html> <!--设置该页面是以中文显示和阅读为基础的--> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>模拟百度搜索</title> </head> <body> <form action="http://www.baidu.com/s" method="get"> <p> <input type="text" name="wd" value="" placeholder="请输入您要搜索的内容"> <input type="submit" value="搜索"> </p> </form> </body> </html>