Created
February 21, 2023 05:31
-
-
Save ikidd/cfc84a7d2a912f71fcd8c8cd83dd2ffd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Turtle Chocolate Chip Cookies</title> | |
</head> | |
<body> | |
<h1>Turtle Chocolate Chip Cookies</h1> | |
<p>A delicious recipe for turtle chocolate chip cookies, perfect for satisfying your sweet tooth.</p> | |
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org/", | |
"@type": "Recipe", | |
"name": "Turtle Chocolate Chip Cookies", | |
"image": "https://example.com/images/turtle-chocolate-chip-cookies.jpg", | |
"author": { | |
"@type": "Person", | |
"name": "Your Name Here" | |
}, | |
"datePublished": "2023-02-21", | |
"description": "A delicious recipe for turtle chocolate chip cookies, perfect for satisfying your sweet tooth.", | |
"prepTime": "PT20M", | |
"cookTime": "PT12M", | |
"totalTime": "PT32M", | |
"yield": { | |
"@type": "QuantitativeValue", | |
"value": "24 cookies" | |
}, | |
"recipeCategory": "Dessert", | |
"recipeCuisine": "American", | |
"keywords": "turtle, chocolate chip, cookies, dessert", | |
"nutrition": { | |
"@type": "NutritionInformation", | |
"servingSize": "1 cookie", | |
"calories": "220 calories", | |
"fatContent": "12 g", | |
"carbohydrateContent": "28 g", | |
"proteinContent": "2 g" | |
}, | |
"recipeIngredient": [ | |
"1/2 cup unsalted butter, at room temperature", | |
"1/2 cup granulated sugar", | |
"1/2 cup brown sugar", | |
"1 large egg", | |
"1 teaspoon vanilla extract", | |
"1 1/2 cups all-purpose flour", | |
"1/2 teaspoon baking soda", | |
"1/2 teaspoon salt", | |
"1 cup semisweet chocolate chips", | |
"1/2 cup chopped pecans", | |
"1/2 cup caramel bits", | |
"Sea salt, for sprinkling" | |
], | |
"recipeInstructions": [ | |
{ | |
"@type": "HowToStep", | |
"text": "Preheat oven to 350°F. Line a baking sheet with parchment paper." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "In a large bowl, cream together butter, granulated sugar, and brown sugar until light and fluffy, about 2-3 minutes." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Add egg and vanilla extract, and beat until well combined." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "In a separate bowl, whisk together flour, baking soda, and salt." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Gradually add the dry ingredients to the wet ingredients, mixing until just combined." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Stir in chocolate chips, pecans, and caramel bits." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Using a cookie scoop or spoon, drop dough onto the prepared baking sheet, spacing them about 2 inches apart." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Sprinkle sea salt over each cookie." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Bake for 10-12 minutes, or until the edges are golden brown." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Remove from the oven and let cool on the baking sheet for 5 minutes before transferring to a wire rack to cool completely." | |
}, | |
{ | |
"@type": "HowToStep", | |
"text": "Enjoy your delicious turtle chocolate chip cookies!" | |
} | |
] | |
} | |
</script> | |
</body> | |
</html> | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment