我想制作一个Google自定义搜索引擎。我想将Adsense用于Google的搜索程序。如果有人访问我的网站,键入一个单词并按Enter或按搜索按钮,它将显示google自定义搜索的结果。
此代码T试图设计我的搜索引擎
<code>
<form name="search_box" action="" method="get">
<center>
<img src="logo.png" class="img-responsive" alt="search" style="height:122px;width:420px;"/>
<input type="text" id="q" placeholder="Type to Search" size="50" class="form-control" name="search" style="width:60%;margin-top:20px;"/>
<input type="submit" class="btn btn-primary" value="Search" style="margin-top:20px;cursor: url(http://cur.cursors-4u.net/cursors/cur-2/cur117.cur), progress !important;"
</center>
</form>
</code>