32 lines
1.3 KiB
HTML
32 lines
1.3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Bücherwurm WebInterface</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div name="main"><!-- der ganze Inhalt ohne Hintergrund. Soll mobileFirst Senkrecht ausgerichtet sein -->
|
||
|
<h1>Bücherwurm Bibliotheksverwaltung</h1><!-- vorläufiger Titel der Webseite-->
|
||
|
<div><!-- Feld für Liste mit den Dropdowns, Inhalt wird mittig zentriert -->
|
||
|
<dl>
|
||
|
<form name="KatalogNav" onchange="location.assign(this.value);">
|
||
|
<dt>
|
||
|
<label for="choices">Katalog</label>
|
||
|
</dt>
|
||
|
<dd>
|
||
|
Buch im Katalog
|
||
|
<select name="selection" id="selection">
|
||
|
<option></option>
|
||
|
<option value=katalog/find.html>Finden</option>
|
||
|
<Option value="katalog/add.html">Hinzufügen</Option>
|
||
|
<option value=katalog/change.html>Bearbeiten</option>
|
||
|
<option value="katalog/delete.html">Löschen</option>
|
||
|
</select>
|
||
|
</dd>
|
||
|
</form>
|
||
|
</dl>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|