-
Notifications
You must be signed in to change notification settings - Fork 0
/
image-search.html
33 lines (33 loc) · 1.05 KB
/
image-search.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
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="styles.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<title>Image Search</title>
</head>
<body>
<div class="nav">
<a class="link" href="index.html">Google Search</a>
<a class="link" href="advanced-search.html">Advanced Search</a>
</div>
<div class="wrapper">
<picture>
<source
srcset="images/google-logo-white.png"
media="(prefers-color-scheme: dark)"
/>
<img class="logo" src="images/google-logo-color.png" alt="Google" />
</picture>
</div>
<form action="https://www.google.com/search">
<div class="form wrapper">
<input class="txt" id="q" type="text" name="q" />
<input type="hidden" name="tbm" value="isch" />
<div class="btn">
<input class="submit" type="submit" value="Google Image Search" />
</div>
</div>
</form>
</body>
</html>