partdb/public/index.html

34 lines
1017 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>electronic parts database explorer</title>
<script type='application/javascript' src='partdb.js'></script>
<link rel='stylesheet' href='index.css'>
</head>
<body>
<div class="container">
<table>
<thead>
<tr><th>search</th><th>part details</th></tr>
</thead>
<tbody>
<tr>
<td class="left">
<div class="resize">
<input class="fill" type="text" id="terms" name="terms" placeholder="search terms (space seperated, anded)" oninput="search()"><br>
<select id="results" size="20" onchange="select()"></select>
</div>
</td>
<td class="right">
<div class="resize">
<div class="name">name:</div><div class="justify"><input class="justify" type="text" id="part_name"></div>
<div class="name">description:</div><div class="justify"><input class="justify" type="text" id="part_description"></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>