-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nutrition.html
28 lines (28 loc) · 1.04 KB
/
Nutrition.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Nutrition Calculator</title>
<link rel="stylesheet" href="tools_ele.css">
</head>
<body>
<div class="container">
<h2>Recipe Nutrition Calculator</h2>
<label for="recipeName">Recipe Name:</label>
<input type="text" placeholder="Enter the name of your recipe" id="recipeName">
<label for="servings">Number of Servings:</label>
<input type="number" placeholder="Enter the number of servings" id="servings">
<div class="ingredients">
<h3>Ingredients</h3>
<div id="ingredientInputs">
<!-- Ingredient inputs will be dynamically added here -->
</div>
<button onclick="addIngredient()">Add Ingredient</button>
</div>
<button onclick="calculateNutrition()">Calculate Nutrition</button>
<div id="result"></div>
</div>
<script src="nut"></script>
</body>
</html>