폼태그 세개를 써서 위 사진처럼 검색창 세개를 만들었습니다.
혹시 아래 사진처럼 입력창 하나로 버튼 세개를 쓰는 검색창을 만드는 방법을 아시는 분 있으면 좀 도와주세요...
자바스크립트라던지 복잡한 방법 말고 단순 폼태그 수준만으로 만드는 방법을 좀 부탁드립니다..
<FORM name=search action='http://search.naver.com/search.naver' method='get' target='_blank' style='margin:2px'>
<INPUT style='FONT-SIZE: 10pt; FONT-FAMILY: gulim; HEIGHT: 21px; BACKGROUND-COLOR: #f8fff1' maxLength='250' size='25' name=query>
<INPUT type='submit' name='submit' value='네이버'>
</FORM>
<FORM name=search action='http://search.daum.net/search?t__nil_searchbox=btn&w=tot' method='get' target='_blank' style='margin:2px'>
<INPUT style='FONT-SIZE: 10pt; FONT-FAMILY: gulim; HEIGHT: 21px; BACKGROUND-COLOR: #f8fff1' maxLength='250' size='25' name='query'>
<INPUT type='submit' name='submit' value='다 음'>
</FORM>
<FORM name=search action='http://search.empas.com/search/all.html' method='get' target='_blank' style='margin:2px'>
<INPUT style='FONT-SIZE: 10pt; FONT-FAMILY: gulim; HEIGHT: 21px; BACKGROUND-COLOR: #f8fff1' maxLength='250' size='25' name='query'>
<INPUT type='submit' name='submit' value='엠파스'>
</FORM>