-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.39 KB
/
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
29
30
31
32
33
34
35
36
37
38
<!-- Initial formatting, behavior=OK -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Multi-Search</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="font-family: Arial, sans-serif;">
<div class=dispatch_flex>
<a class="page_dispatch" href='image.html'>
Images
</a>
<a class="page_dispatch" href='Advanced.html'>
Advanced
</a>
</div>
<div style="margin-top: 115px;">
<div style="color: cornflowerblue; text-align: center; font-size: 75px; font-weight:normal">Google Search</div>
<div class="search_div">
<form id="form1" method="get" action="https://google.com/search">
<input class="search_input" type="text" name="q" placeholder="" autofocus onfocus="this.value=''">
<input type="submit" style="display:none">
</form>
</div>
</div>
<div class="buttons_div">
<input class="search_button" type="submit" form="form1" value="Google Search"></input>
<input class="search_button" type="submit" form="form1" value="I'm Feeling Lucky" name="btnI"></button>
</div>
</div>
</body>
</html>