-
Notifications
You must be signed in to change notification settings - Fork 0
/
images.html
29 lines (29 loc) · 1.17 KB
/
images.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<title>Image search</title>
</head>
<body>
<div class="header">
<div class="header-links">
<a href="index.html">Google Search</a>
<a href="advanced.html">Google Advanced Search</a>
</div>
</div>
<div class="search-container">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google logo" />
<div class="logo-subtext">
<span>images</span>
</div>
<form action="https://www.google.com/search" method="get">
<div class="search-field">
<svg height="21" viewBox="0 0 21 21" width="21" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd" stroke="#808080" stroke-linecap="round" stroke-linejoin="round"><circle cx="8.5" cy="8.5" r="5" /><path d="m17.571 17.5-5.571-5.5" /></g></svg>
<input type="text" name="q">
</div>
<input type="hidden" name="tbm" value="isch" />
</form>
</div>
</body>
</html>