-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.2 KB
/
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
38
39
40
41
42
<!DOCTYPE html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="shortcut icon" type="image/x-icon" href="data/favicon.ico">
<title>Recip-E</title>
<script>
function contains(array, value){
for(let i = 0; i < array.length; i++){
if (array[i] == value){
return true;
}
}
return false;
}
</script>
<script src = "Constants.js"></script>
<script src = "IdManager.js"></script>
<script src = "UserEnv.js"></script>
<script src = "Ingredient.js"></script>
<script src = "NutritionInfo.js"></script>
<script src = "UnitConvertor.js"></script>
<script src = "Food.js"></script>
<script src = "Substitutes.js"></script>
<script src = "SubstitutionList.js"></script>
<script src = "Step.js"></script>
<script src = "Button.js"></script>
<script src = "RecipeWriter.js"></script>
<script src = "RecipeBook.js"></script>
<script src = "Timer.js"></script>
<script src = "Recipe.js"></script>
<link rel="stylesheet" href="app.css">
</head>
<body>
</body>