Coding/Script
웹사이트에 구글 검색창 달기
chobocho
2006. 8. 3. 23:45
구글 검색창을 웹페이지에 달고 싶다면 다음 사이트를 참고하면 된다.
http://www.google.co.kr/intl/ko/searchcode.html
http://www.google.co.kr/intl/ko/searchcode.html
아니면 아래 코드를 추가해 주면된다.
[CODE]
<!-- Search Google -->
<center>
<form method=get action="http://www.google.co.kr/search">
<table bgcolor="#FFFFFF"><tr><td>
<a href="http://www.google.co.kr/">
<img src="http://www.google.co.kr/logos/Logo_40wht.gif"
border="0" alt="Google" align="absmiddle"></a>
<input type=text name=q size=25 maxlength=255 value="">
<input type=hidden name=ie value=euc-kr>
<input type=hidden name=oe value=euc-kr>
<input type=hidden name=hl value=ko>
<input type=submit name=btnG value="Google 검색">
</td></tr></table>
</form>
</center>
<!-- Search Google -->
[/CODE]