-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage.html
More file actions
104 lines (102 loc) · 4.04 KB
/
image.html
File metadata and controls
104 lines (102 loc) · 4.04 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Search</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="contain">
<!-- navigation bar -->
<div class="nav_bar">
<!-- link back to search -->
<a href="index.html">Search</a>
<div class="nav_clear"></div>
</div>
<div>
<div class="img_span">
<center>
<div class="img_logo_outcontain">
<div class="img_logo_incontain">
<!-- image search url -->
<div>
<img
class="img_logo"
alt="Google"
src="googlelogo_color_272x92dp.png"
width="272"
height="92"
/>
<div>
<span class="sub_logo">Images</span>
</div>
</div>
</div>
</div>
<div class="img_search_bar_outcontain">
<div class="img_form_outcontain">
<form action="https://images.google.com/search">
<div class="img_bar_outcontain">
<div class="img_bar_incontain" >
<div class="img_bar" id="hover_bar">
<!-- img search icon -->
<div class="img_search_input_outcontain">
<div class="img_icon_outcontain">
<div class="img_icon_incontain">
<span class="img_icon">
<svg
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<path
d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
></path>
</svg>
</span>
</div>
</div>
<div class="img_search_input_incontain">
<div class="img_search"></div>
<!-- hidden image search parameters -->
<input type="hidden" name="tbm" value="isch" />
<!-- image search parameters -->
<input class="img_search_input" type="text" name="q" aria-label="Search" title="Search"/>
</div>
<div class="img_search_icon_outcontain">
<div class="img_search_icon_incontain" aria-label="Search by image">
<span class="img_search_icon"></span>
</div>
</div>
</div>
<button class="image_btn_outcontain" type="submit">
<div class="image_btn_incontain">
<span class="image_btn">
<svg
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<path
d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
></path>
</svg>
</span>
</div>
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</center>
</div>
</div>
</body>
</html>