-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimageSearch.html
More file actions
42 lines (24 loc) · 933 Bytes
/
imageSearch.html
File metadata and controls
42 lines (24 loc) · 933 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<Link rel = "stylesheet" href = styles.css>
</head>
<body>
Image Search
<div class = "center">
<img class = "googleLogo" src = "https://pngimg.com/uploads/google/google_PNG102344.png" alt = "Google Letters">
<form class = "formCenter" action = "https://www.google.com/search" method = "get">
<input class = "searchBar" name = "q" type = "text">
<input id = "imageSubmit" type = "submit" value = "Google Image Search">
<input type="hidden" name="tbm" value="isch">
</form>
</div>
<div class = "upper-right">
<a class = "upright" href = "advancedSearch.html"> Advanced Search </a>
<a class = "upright" href = "index.html"> Index Seach </a>
</div>
</body>
</html>