-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHTMLPage1.html
More file actions
69 lines (67 loc) · 2.8 KB
/
HTMLPage1.html
File metadata and controls
69 lines (67 loc) · 2.8 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>College Meal Plans</title>
</head>
<body>
<h1><font color="red">College Students, </font></h1>
<p><font color="blue">No time to cook? No recipes off the top of your head?</font></p>
<h2><font color="green">No Problem!</font></h2>
<p><font color="blue">With this website, you will no longer need to waste time trying to find the right recipe.<br>
Just enter how long you have to cook and what ingredients you have and we'll do the rest<br>
(except make the food!).</font></p>
<form name="TimeToCook">
Time to cook (in minutes): <br>
<input type="number" name="timetocook"><br>
</form>
<form name="Vegetables">
<br>Vegetables: <br>
<input type="checkbox" name="Onions">Onions<br>
<input type="checkbox" name="Bell Peppers">Bell Peppers<br>
<input type="checkbox" name="Tomatoes">Tomatoes<br>
<input type="checkbox" name="Carrots">Carrots<br>
<input type="checkbox" name="Potatoes">Potatoes<br>
<input type="checkbox" name="Jalapenos">Jalapenos<br>
</form>
<form name="Fruits">
<br>Fruits: <br>
<input type="checkbox" name="Apples">Apples<br>
<input type="checkbox" name="Bananas">Bananas<br>
<input type="checkbox" name="Oranges">Oranges<br>
<input type="checkbox" name="Pineapple">Pineapple<br>
<input type="checkbox" name="Watermelon">Watermelon<br>
</form>
<form name="Meat/Poultry">
<br>Meat/Poultry: <br>
<input type="checkbox" name="Chicken">Chicken<br>
<input type="checkbox" name="Beef">Beef<br>
<input type="checkbox" name="Fish">Fish<br>
<input type="checkbox" name="Eggs">Eggs<br>
<input type="checkbox" name="Pork">Pork<br>
</form>
<form name="Grains">
<br>Grains: <br>
<input type="checkbox" name="Rice">Rice<br>
<input type="checkbox" name="Sliced Bread">Sliced Bread<br>
<input type="checkbox" name="Tortillas">Tortillas<br>
<input type="checkbox" name="Pasta">Pasta<br>
</form>
<form name="Miscellaneous">
<br>Miscellaneous: <br>
<input type="checkbox" name="Oil">Oil<br>
<input type="checkbox" name="Garlic">Garlic<br>
<input type="checkbox" name="Salt">Salt<br>
<input type="checkbox" name="Milk">Milk<br>
</form>
<form>
<br><button id="findrecipe" onclick="myFunction()">Find your recipe!</button>
</form>
<!--<p id="printTime"></p>
<script>
function myFunction() {
var time = document.forms["TimeToCook"]["timetocook"].value;
document.getElementById("printTime").innerHTML = "You have " + time + " to cook."
}
</script>-->
</body>
</html>