-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
36 lines (36 loc) · 2.07 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Advanced Search</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class = topcorner>
<nav aria-label="...">
<ul class="pagination pagination-sm">
<li class="page-item"><a class="page-link" href="index.html">General Search</a></li>
<li class="page-item"><a class="page-link" href="index1.html">Image Search</a></li>
<li class="page-item active" aria-current="page">
<span class="page-link">Advanced Search</span>
</li>
</ul>
</nav>
</div>
<img style="margin:20px;height: 24px;width: 74px;"src="googlelogo_color_272x92dp.png"><br>
<label style="color: red;text-indent: 50px;font-size: 20px;margin-top: 10px;font-family:arial,sans-serif;">Advanced Search</label>
<form action="https://google.com/search" class="topleftc commfont" style="line-height: 3.2;">
Find pages with: <br>
<label for="as_q" class="commfont">All these words:</label>
<input class="fname commfont" type="text" name="as_q""><br>
<label for="as_epq commfont">This exact word or phrase:</label>
<input class="fname commfont" type="text" name="as_epq"><br>
<label for="as_oq" class="commfont">Any of these words:</label>
<input class="fname commfont" type="text" name="as_oq"><br>
<label for="as_eq" class="commfont">None of these words:</label>
<input class="fname commfont" type="text" name="as_eq" value="">
<br><input id="as_button" class="commfont midright" type="submit" value="Advanced Search">
</form>
</body>
</html>