Berikut kode sederhana cara membuat form search box untuk halaman error di Blogger atau blogspot.
<form method="get" action="/search">
<table width="100%">
<tr>
<td><input type="text" style="width:95%;padding:2px;" value="Cari blog ini.." onfocus="if (this.value == "Cari blog ini..") {this.value = ""}" onblur="if (this.value == "") {this.value = "Cari blog ini...";}" name="q"></td>
<td><input type="submit" Value="Search"></td>
</tr>
</table>
</form>
<form method="get" action="/search">
<table width="100%">
<tr>
<td><input placeholder="Type here..." class="input-text" type="text" value="" onfocus="if (this.value == "") {this.value = ""}" onblur="if (this.value == "") {this.value = "";}" name="q" /></td>
<td width="64px"><input class="search-submit" type="submit" value="Search" /></td>
</tr>
</table>
</form>