-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage.html
More file actions
48 lines (46 loc) · 1.88 KB
/
image.html
File metadata and controls
48 lines (46 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Google Search Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="grid-container-header">
<div class="grid-item-left">
<a href="https://google.com/search" target="_blank">Google Search Page</a>
</div>
<div class="grid-item-right">
<a href="index.html">My search page</a>
</div>
<div class="grid-item-left">
<a href="https://images.google.com/?gws_rd=ssl" target="_blank">Google Image Search Page</a>
</div>
<div class="grid-item-right">
<a href="image.html">My image search page</a>
</div>
<div class="grid-item-left">
<a href="https://google.com/advanced_search" target="_blank">Google Advanced Search Page</a>
</div>
<div class="grid-item-right">
<a href="adv.html">My advanced search page</a>
</div>
</div>
<div class="spacer1"></div>
<div class="grid-container-body1">
<div class="grid-item-center">
<h1>G<font color="#ea4335">o</font><font color="#fbbc05">o</font>g<font color="#34a853">l</font><font color="#ea4335">e</font></h1>
<div class="subscript">
<span>images</span>
</div>
</div>
<div class="grid-item-center">
<form action="https://google.com/search">
<input type="text" name="q" class="input-text-main">
<input name="tbm" value="isch" type="hidden">
<div><br></div>
<input type="submit" value="Google Image Search" class="grey-button">
</form>
</div>
</div>
</body>
</html>