edx/project0/advanced.html
2022-11-14 23:38:41 -05:00

52 lines
1.8 KiB
HTML

<!DOCTYPE html>
<link rel="stylesheet" href="search.css">
<html lang="en">
<head>
<title>Advanced Search</title>
</head>
<body>
<div class="header">
<div class="header-right">
<a href="./image.html">Image Search</a>
<a href="./index.html">Search</a>
</div>
</div>
<div class="mainBody">
<div class=appbar>Advanced Search</div>
<hr>
<div class="search">
<form action="https://google.com/search">
<div class="lOTAE"> <span>Find pages with...</span> </div>
<br>
<table>
<tr>
<td>all these words:</td>
<td><input type="text" name="q"></td>
</tr>
<tr>
<td>this excat word or phrase:</td>
<td><input type="text" name="as_epq"></td>
</tr>
<tr>
<td>any of these words: </td>
<td><input type="text" name="as_oq"></td>
</tr>
<tr>
<td>none of these words:</td>
<td><input type="text" name="as_eq"></td>
</tr>
</table>
</div>
<div class="search__buttons">
<button type="submit" value="Advanced Search" class="advanced">Advanced Search</button>
</div>
</form>
<!-- https://www.google.com/search?as_q=big&as_epq=pink&as_oq=piano&as_eq=cherry&as_nlo=&as_nhi=&lr=&cr=&as_qdr=all&as_sitesearch=&as_occt=any&safe=images&as_filetype=&tbs= -->
</div>
</body>
</html>