-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage.html
More file actions
24 lines (24 loc) · 852 Bytes
/
Copy pathimage.html
File metadata and controls
24 lines (24 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="nav" class="nav">
<a href="index.html" class="link">Google Search</a>
</div>
<div id="center">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
<br>
<span class="word">images</span>
<form action="https://google.com/search">
<input type="text" name="q" class="q">
<br>
<input type="hidden" name="tbm" value="isch">
<input type="submit" value="Image Search" class="btn">
</form>
</div>
</body>
</html>