您的位置:首页 > Web前端 > HTML

好玩的html

2016-04-01 10:49 274 查看
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>js</title>
</head>
<body>
<form action="https://www.google.com.hk/search?" method="GET">
<input type="text" name="q"></input>
<input type="submit" value="提交">
</form>
</body>
</html>


利用html提交关键字 进行谷歌搜索

<form action="https://www.sogou.com/sogou?" method="GET">
<input type="text" name="query"></input>
<input type="submit" value="提交">
</form>


利用html提交关键字 进行搜狗搜索

<form action="https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=0&rsv_idx=1&tn=baidu&" method="GET">
<input type="text" name="wd"></input>
<input type="submit" value="提交">
</form>
利用html提交关键字 进行百度搜索
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  html