-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_search.html
36 lines (34 loc) · 1.12 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
34
35
36
<!--
CS50W edx curriculum
project0: Search
Created by: Fink62
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Image Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="gNavbar">
<a class="gNavbarItem" href="index.html">Google</a>
</div>
</header>
<main>
<div class="centeredLogo">
<img src="google_images.png" alt="Google images logo" height="92px">
</div>
<form action="https://www.google.com/search">
<input class="roundSearchBox" type="text" name="q">
<div class="centeredItem">
<input class="mainSubmitBtn" type="submit" value="Image Search">
<input type="hidden" name="tbm" value="isch">
</div>
</form>
</main>
</body>
</html>