-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 828 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Search</title>
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<nav>
<a href="imageSearch.html">Image Search</a>
<a href="advancedSearch.html">Advanced Search</a>
</nav>
<img src="assets/images/GoogleLogo.png" alt="Google logo">
<form action="https://www.google.com/search" class="formEdit">
<div></div>
<input type="text" name="q" class="searchInput">
<br>
<br>
<input type="submit" value="Google Search" class="searchButton"> <span class="tenPx"></span>
<button type="submit" name="btnI" value="I'm+Feeling+Lucky" class="searchButton">I'm Feeling Lucky</button>
</form>
</body>
</html>