-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_search.html
27 lines (26 loc) · 943 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/75bc2abf7c.js" crossorigin="anonymous"></script>
<title>Image Search</title>
</head>
<body>
<div id="navbar">
<a href="index.html">Google Search</a>
</div>
<div id="search">
<form action="https://www.google.com/search">
<i class="fa-solid fa-magnifying-glass" style="color: #adadad;"></i>
<input type="text" name="q">
<br>
<div id="container_buttons">
<input type="hidden" name="tbm" value="isch">
<input type="submit" value="Image Search">
</div>
</form>
</div>
</body>
</html>