-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.html
36 lines (30 loc) · 1.18 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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search | Images</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div class="links">
<a class="link" href="index.html">Google Search</a>
</div>
</div>
<div id="logo_section">
<div id="logo">
<img src="images/logo.svg" alt="Logo">
<span class="logo_subtext">images</span>
</div>
</div>
<form class="search_form" action="https://google.com/search">
<svg id="search_icon" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
</svg>
<input type="hidden" name="tbm" value="isch">
<input class="search_input" type="text" name="q" placeholder="Search Google Images" autocomplete="off">
<div class="search-buttons">
<input class="search_button" type="submit" value="Google Search">
</div>
</form>
</body>
</html>