-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 921 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
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="nav-links">
<a href="./image.html">Google Image</a>
<a href="./advanced.html">Advanced Search</a>
</div>
<div class="page-logo">Csoogle</div>
<form action="https://google.com/search">
<input class="text-box" type="text" autofocus name="q">
<br>
<table>
<tr>
<td>
<input class="submit-button" type="submit" value="Google Search">
</td>
<td>
<input class="submit-button" name = btnI type="submit" value="I'm Feeling Lucky">
</td>
</tr>
</table>
</form>
</body>
</html>