-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainMenu.html
More file actions
20 lines (18 loc) · 852 Bytes
/
MainMenu.html
File metadata and controls
20 lines (18 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!--
Michael Nunes Principles of Database System
Dr. Stephen Blythe 30500-21
Project #3
MainMenu.html
-->
<!-- this Main Menu page has a header and several links, so the user can go to these pages such as link,
create a recipe, buy a recipe and add ingredients -->
<!-- header of the HTML page -->
<h1> Main Menu </h1>
<!-- link to go the createRecipe.html page -->
<a href=createRecipe.html> - Create a recipe or add ingredient to a recipe</a> <br>
<!-- link to go the listRecipe.html page -->
<a href=listRecipe.html> - List a recipe's ingredients</a> <br>
<!-- link to go the buyIngredients.html page -->
<a href=buyIngredients.html> - Buy all recipe ingredients from the store </a> <br>
<!-- link to go the addImgredients.html page -->
<a href=addIngredients.html> - Add ingredients to the store</a> <br>