-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
26 lines (25 loc) · 908 Bytes
/
search.html
File metadata and controls
26 lines (25 loc) · 908 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
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<ul class="navbar-google">
<li class="navbar-item-google"><a href="Images.html">Images</a></li>
<li class="navbar-item-google"><a href="AdvancedSearch.html">Advanced Search</a></li>
</ul>
</div>
<div class="center-div">
<img src="logo.png" alt="Google" height=92>
</div>
<form action="https://www.google.com/search">
<input type="text" name="q" class="rounded-input">
<div class="center-div">
<input type="submit" value="Google Search" class="btn-google">
<input type="submit" name="btnI" value="I'm Feeling Lucky" class="btn-google">
</div>
</form>
</body>
</html>