-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (79 loc) · 2.68 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>How Form words</title>
<style>
*{
box-sizing : border-box;
}
body{
height : 940px;
width : 100%;
display : flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding : 0px;
margin : 0px;
}
form{
width : 100%;
height : 235px;
display : flex;
flex-direction: column;
align-items: center;
justify-content:center;
}
form:nth-child(1){
background-color: white;
}
form:nth-child(2){
background-color: rgb(221, 255, 221);
}
form:nth-child(3){
background-color: rgb(255, 219, 219);
}
form:nth-child(4){
background-color: rgb(255, 236, 215);
}
input{
text-align: center;
font-size : 14px;
outline : none;
}
#blank{
width : 500px;
height : 40px;
border-radius: 15px;
border : 2px solid rgb(182, 182, 182);
box-shadow: 1px 1px rgb(169, 169, 169);
}
form img{
width : 230px;
margin-bottom : 20px;
}
#button{
width : 45px;
height : 45px;
}
</style>
</head>
<body>
<form target = "_blank" action = "https://www.google.com/search?q=%E3%85%97%E3%84%B7%E3%84%B1%E3%84%B7&safe=active&rlz=1C5CHFA_enKR943KR943&ei=xaasYK1D0qH5Bv3AoKAM">
<img src ="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png"><br>
<input id = "blank" type="text" placeholder="구글 검색" name = 'oq'>
</form>
<form target = "_blank" action = "https://search.naver.com/search.naver?where=nexearch&sm=top_hty&fbm=1&ie=utf8">
<img src ="https://kmug.co.kr/data/file/design/1846294025_ntshf7Vk_992a3cae3dc7e29412d19099ec3381776daed803.png"><br>
<input id = "blank" type="text" placeholder="네이버 검색" name = 'query'>
</form>
<form target = "_blank" action = "https://www.youtube.com/results">
<img style = "width : 210px; margin-bottom : 0px;"src ="https://i0.wp.com/mcea.co.kr/wp-content/uploads/2020/10/YouTube-Logo.png?ssl=1"><br>
<input id = "blank" type="text" placeholder="유투브 검색" name = 'search_query'>
</form>
<form target = "_blank" action = "https://search.daum.net/search?w=tot&DA=YZR&t__nil_searchbox=btn&sug=&sugo=&sq=&o=">
<img style = "width : 210px"src ="https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Daum_communication_logo.svg/1280px-Daum_communication_logo.svg.png"><br>
<input id = "blank" type="text" placeholder="다음 검색" name = 'q'>
</form>
</body>
</html>