1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>검색창 만들기</title>
</head>
<body>
    <h3>naver 검색하기</h3>
    <form method="get" action="http://search.naver.com/search.naver">
         검색어 <input name="query">
         <input type="submit" value="검색">
    </form></br>
    <hr>
 
    <h3>google 검색하기</h3>
    <form method="get" action="https://www.google.com/search">
        검색어 <input name="query">
        <input type="submit" value="검색">
    </form>
    </form></br>
    <hr>
 
    <h3>daum 검색하기</h3>
    <form method="get" action="https://search.daum.net/search">
        검색어 <input name="q">
        <input type="submit" value="검색">
    </form></br>
    <hr>
 
    <h3>youtube 검색하기</h3>
    <form method="get" action="https://www.youtube.com/results">
        검색어 <input name="search_query">
        <input type="submit" value="검색">
    </form>
    </form>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

 

해당 칸에 검색어를 입력하고 버튼을 누르면 각각의 사이트 검색결과 페이지로 이동한다.

'화면구현' 카테고리의 다른 글

HTML 날짜 입력하기,  (0) 2020.03.05
텍스트 상자, datalist, 텍스트 버튼 만들기  (0) 2020.03.04
웹 폼  (0) 2020.03.04
HTML 오디오, 비디오 삽입하기  (0) 2020.03.04
HTML 인라인 프레임 - target 속성  (0) 2020.03.04
openclose