-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageSearch.html
More file actions
49 lines (44 loc) · 1.35 KB
/
ImageSearch.html
File metadata and controls
49 lines (44 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Search</title>
<link rel = 'icon' href = 'logo.png' type='image/png'>
<style>
.fig {
display: block;
text-align: center;
}
input[type=search] {
padding: 10px;
margin: 5px 5px;
border-radius: 30px 30px;
text-align: 30px;
font-style: italic;
background: url(lupa.png) no-repeat left;
background-size: auto 50%;
}
input[type=submit] {
padding: 7px;
margin: 5px 5px;
border-radius: 5px 5px;
border-width: inherit;
}
</style>
</head>
<body>
<div style="text-align: right;">
<a href ='Index.html'>Google Search</a>
</div>
<figure class='fig'>
<a href="Index.html" >
<img src="Google_Images.png" class="image/png" width="400" title="Return to Google Search ">
</a>
<div>
<form>
<input type ="search" placeholder="Enter" name="q" size="65";>
</div>
<input type ="submit" name="Search" formaction ="http://images.google.com/images" value='Image Search'>
</figure>
</form>
</body>
</html>