-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.html
27 lines (27 loc) · 1.16 KB
/
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
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Search</title>
<link rel="stylesheet" href="styles.scss">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<a href="index.html">Google Search</a>
<a href="advanced.html">Advanced Search</a>
</header>
<form action="https://www.google.com/search">
<h1>Google</h1>
<h6>
images
</h6>
<div class="searchbox">
<input type="text" name="q" placeholder="Search Google Images" autocomplete="off" autofocus>
</div>
<input type="hidden" name="tbm" value="isch">
<input type="submit" value="Google Image Search">
</form>
</body>
</html>