27 lines
603 B
HTML
27 lines
603 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Interaktive Produktliste</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h1>Interaktive Produktliste</h1>
|
|
|
|
|
|
<div class="filter-box">
|
|
<label>Textsuche: </label>
|
|
<input type="text" id="textFilter" placeholder="Produkt suchen..." />
|
|
<br /><br />
|
|
<label>Maximaler Preis: </label>
|
|
<input type="number" id="priceFilter" min="0" placeholder="Preis" />
|
|
</div>
|
|
|
|
|
|
<div id="productList"></div>
|
|
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |