-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (21 loc) · 826 Bytes
/
index.html
File metadata and controls
30 lines (21 loc) · 826 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
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h3>Index Search</h3>
<div class = "center">
<img class = "googleLogo" src = "https://pngimg.com/uploads/google/google_PNG102344.png" alt = "Google Letters">
<form action="https://www.google.com/search" class = "formCenter" method="get">
<input class = "searchBar" type="text" name="q">
<input id="searchBut" type="submit" value="Google Search">
</form>
</div>
<div class="upper-right">
<a class="upright" href="advancedSearch.html">Google Advanced Search</a>
<a class="upright" href="imageSearch.html">Image Search</a>
</div>
</body>
</html>