diff --git a/Markdown/TheOdinProjectNotes.md b/Markdown/TheOdinProjectNotes.md
index 155acda..8826520 100644
--- a/Markdown/TheOdinProjectNotes.md
+++ b/Markdown/TheOdinProjectNotes.md
@@ -305,4 +305,24 @@ git remote set-url origin https://'username':'password'@repositorylink
### Recipes
- Project to build a basic recipe website
- Will have a main index page with links to a few recipes
+#### Assignment
+- Iteration 1: Initial Structure
+ - Within the `odin-recipes` directory, create an `index.html` file
+ - Fill it out with the usual boilerplate HTML and add an `h1` heading "Odin Recipes" to the body
+- Iteration 2: Recipe Page
+ - Create a new directory within the `odin-recipes` directory and name it `recipes`
+ - Create a new HTML file within the `recipes` directory and name it after the recipe it will contain.
+ - Ie. `lasagna.html`
+ - Include an `h1` heading with the recipe's name as its content
+ - Back in the `index.html` file, add a link to the recipe page you just created
+ - Use an anchor
+- Iteration 3: Recipe Page Content
+ - An Image of the finished dish under the `h1` heading
+ - Under the image, it should have an appropriately sized "Description" heading followed by a paragraph or two describing the recipe
+ - Under the description, add an "Ingredients" heading followed by an **unordered list** of the ingredients needed for the recipe.
+ - Finally, under the ingredients list, add a "Steps" heading followed by an **ordered list** of the steps needed for making the dish
+- Iteration 4: Add More Recipes
+ - Add two more recipes with the identical page structures to the recipe page you've already created
+ - Don't forget to link to the new recipes on the index page
+ - Consider putting all the links in an *unordered list* so they aren't all on one line.
-
\ No newline at end of file
diff --git a/odin-recipes/index.html b/odin-recipes/index.html
new file mode 100644
index 0000000..898fffe
--- /dev/null
+++ b/odin-recipes/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+ Document
+
+
+ Odin Recipes
+
+
+
\ No newline at end of file
diff --git a/odin-recipes/recipes/ChickenTenders.html b/odin-recipes/recipes/ChickenTenders.html
new file mode 100644
index 0000000..7b517d4
--- /dev/null
+++ b/odin-recipes/recipes/ChickenTenders.html
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+ Document
+
+
+ Juicy Chicken Tenders
+
+ Description
+
+ The Recipe was created by John Chandler, it became one of the most popular lasagna recipes
+ today and is still replicated and enjoyed.
+
+
+ His legacy is the lasagna since he passed away at a young age of 53
+
+ Ingredients
+
+ - 1 cup pineapple juice
+ - half cup packed brown Sugar
+ - 1-third cup light soy sauce
+ - 2 pounds chicken breast tenderloins or strips
+ - skewers
+
+ Steps
+
+ - In a small saucepan over medium heat, mix pineapple juice,
+ brown sugar, and soy sauce. Remove from heat just before the mixture comes to a boil.
+ - Place chicken tenders in a medium bowl.
+ Cover with the pineapple marinade, and refrigerate for at least 30 minutes.
+ - Preheat grill for medium heat. Thread chicken lengthwise onto wooden skewers.
+ - Lightly oil the grill grate. Grill chicken tenders 5 minutes per side,
+ or until juices run clear. They cook quickly, so watch them closely.
+
+
+
\ No newline at end of file
diff --git a/odin-recipes/recipes/Salmon.html b/odin-recipes/recipes/Salmon.html
new file mode 100644
index 0000000..5c3f4d9
--- /dev/null
+++ b/odin-recipes/recipes/Salmon.html
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+ Document
+
+
+ Grilled Salmon
+
+ Description
+
+ Amazingly sweet salmon that is fresh as can be that goes well with veggies.
+
+ Ingredients
+
+ - 1.5 pounds of salmon fillets
+ - lemon pepper to taste
+ - garlic powder to taste
+ - Salt to taste
+ - 1-third cup soy sauce
+ - 1-third cup brown sugar
+ - 1-third cup water
+ - 1-third cup vegetable oil
+
+ Steps
+
+ - Season salmon fillets with lemon pepper, garlic powder, and salt
+ - Stir soy sauce, brown sugar, water, and vegetable oil together in a
+ small bowl until sugar is dissolved. Place fish in a large resealable
+ plastic bag; add soy sauce mixture, seal, and turn to coat. Refrigerate
+ for at least 2 hours.
+
+ - Preheat an outdoor grill for medium heat and lightly oil the grate.
+ - Place salmon on the preheated grill, and discard marinade. Cook salmon
+ until fish flakes easily with a fork, about 6 to 8 minutes per side.
+
+
+
\ No newline at end of file
diff --git a/odin-recipes/recipes/lasagna.html b/odin-recipes/recipes/lasagna.html
new file mode 100644
index 0000000..c2ce744
--- /dev/null
+++ b/odin-recipes/recipes/lasagna.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ Document
+
+
+ The Best Meat Lasagna
+
+ Description
+
+ The Recipe was created by John Chandler, it became one of the most popular lasagna recipes
+ today and is still replicated and enjoyed.
+
+
+ His legacy is the lasagna since he passed away at a young age of 53
+
+ Ingredients
+
+ - Meat(Italian sausage and lean ground beef)
+ - Onion and garlic
+ - Tomato products(Can of crushed Tomato, two cans of tomato sauce, two cans of tomato paste)
+ - Sugar(two table spoons)
+ - Spices and seasonings(fresh parsley, dried basil leaves, salt, italian seasoning, fennel seeds, and black pepper)
+ - Lasagna noodles
+ - Cheeses(Parmesan, mozzarella, and ricotta)
+ - Egg
+
+ Steps
+
+ - Make the meat sauce
+ - Cook the noodles
+ - Make the ricotta mixture
+ - Layer the lasagna according to the recipe instructions
+ - Cover with foil and bake
+ - Let the lasagna rest before saving
+ - 50 minutes in oven at 375 degrees.
+
+
+
\ No newline at end of file