partdb/public/index.html

28 lines
558 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>
<form>
<input type="text" id="terms" name="terms" placeholder="search terms" oninput="search()"><br>
</form>
</div>
<div>
<table>
<thead>
<tr>
<th>name</th>
<th>description</th>
<th>stock</th>
</tr>
</thead>
<tbody id="results"></tbody>
</table>
</div>
</body>
</html>