kcalculator/index.html
2022-09-09 15:25:08 +02:00

71 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kcalculator</title>
<link href="style.css" type="text/css" rel="stylesheet">
<script src="jst.js"></script>
<script src="utils.js"></script>
<script src="data.js"></script>
<script defer src="main.js"></script>
</head>
<body>
<header>
<h1>Kcalculator</h1>
</header>
<datalist id="food-list"></datalist>
<main>
<div id="food-search-container">
<input type="search" list="food-list" id="food-search" name="food-search" placeholder="Lebensmittel">
<div id="search-entries">
</div>
</div>
<table id="menu-table">
<thead>
<tr>
<th>Lebensmittel</th>
<th>Kalorien</th>
<th>Bewertung</th>
<th>Menge</th>
<th>Energie</th>
<th>Fett</th>
<th>Kohlenhydrate</th>
<th>Zucker</th>
<th>Eiweiß</th>
<th>Alkohol</th>
<th></th>
</tr>
</thead>
<tbody id="food-menu">
</tbody>
<tfoot>
<tr>
<td>Gesamt</td>
<td></td>
<td></td>
<td></td>
<td id="summary-energy"></td>
<td id="summary-fat"></td>
<td id="summary-carbs"></td>
<td id="summary-sugar"></td>
<td id="summary-proteins"></td>
<td id="summary-alc"></td>
<td></td>
</tr>
</tfoot>
</table>
</main>
</body>
</html>