-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1002 Bytes
/
index.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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pesto alla Genovese Calculator</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
}
input, button {
margin: 10px 0;
padding: 10px;
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<h1>Pesto alla Genovese Ingredient Calculator</h1>
<p>Based on GialloZafferano Recipe</p>
<label for="people">Number of People:</label>
<input type="number" id="people" placeholder="Enter number of servings">
<button onclick="calculate()">Calculate Ingredients</button>
<div id="result"></div>
</div>
<script src="script.js"></script>
</body>
</html>