-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.html
23 lines (23 loc) · 819 Bytes
/
image.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Search</title>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<header>
<a href="index.html">Basic Search</a>
</header>
<body>
<div class="container">
<div class="search">
<form action="https://google.com/search">
<input class="search-bar" type="text" name="q">
<input class="button" type="submit" value="Image Search">
<input class="button" type="hidden" name="tbm" value="isch">
<input class="button" type="hidden" name="sclient" value="img">
</form>
</div>
</div>
</body>
</html>