From the LYH Blog

초간단 구글 검색창 만들기

1. input을 사용하여 먼저 검색창과 검색 버튼을 만드세요.
<input type="text" value="">
<input type="submit" value="검색">

2. form method을 사용하여 서버를 연결해 주세요.
<form method=get action="http://www.google.co.kr/search"><form>

3. form methodinput 을 합치면 끝.
<form method=get action="http://www.google.co.kr/search">
<input type="text" value="">
<input type="submit" value="검색"> <form>

소스 결과

[번외] 네이버


JSON(JavaScript Object Notation)

JSON

· JSON: JavaScript Object Notation.

· 자바스크립트를 위한 것이며, 객체 형식으로 자료를 표현 하는 것이다.

· JSON은 쉽고 간결하게 XML을 대체 할 수 있다.

JSON과 XML의 차이점

1) JSON 끝내는 태그가 필요하지 않다.
2) 상대적으로 코드의 길이가 짧다.
3) 빠르게 쓰고 읽을 수 있다.
4) 배열을 사용할 수 있다.