29 lines
720 B
HTML
29 lines
720 B
HTML
<h2>Bible Search</h2>
|
|
<form action="/search">
|
|
<label for='kw'>Key Words</label><br>
|
|
<input type="text" name="kw"><br><br>
|
|
|
|
<label for='view'>View<label><br>
|
|
<input type="radio" name="view" value="rich" checked="checked">Rich<br>
|
|
<input type="radio" name="view" value="plain">Plain<br>
|
|
<input type="radio" name="view" value="json">JSON<br>
|
|
|
|
<input type="submit">
|
|
<form>
|
|
|
|
<hr>
|
|
<p>You can use standard search operators such as <b>AND</b>, <b>OR</b>, and <b>NOT</b>.</p>
|
|
<p>Such as: "reprobate <b>NOT</b> silver".</p>
|
|
<p>Multiple word queries without operators will be assumed to be AND.<p>
|
|
|
|
<style>
|
|
html{
|
|
font-family: sans-serif;
|
|
font-size: 14pt;
|
|
width: 768px;
|
|
}
|
|
a {
|
|
color: #547720
|
|
}
|
|
</style>
|