-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<style>
#searchbox, #othersearchbox {
display: flex;
flex-wrap: wrap;
}
a#advancedsearch, #othersearchbox {
float:right;
}
a#imagesearch, #searchbox{
float:left;
}
</style>
</head>
<body>
<div class="container">
<div id="searchbox">
<form action="https://google.com/search">
<input type="text" name="q">
<input type="submit" value="Google Search">
</form>
</div>
<div id="othersearchbox">
<a id="imagesearch" href="https://www.google.com.pk/imghp">Google image search</a>
<a id="advancedsearch" href="https://www.google.com.pk/advanced_image_search">Google advanced search</a>
</div>
</div>
</body>
</html>