html
This commit is contained in:
27
index.html
27
index.html
@@ -0,0 +1,27 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user