<?xml version="1.0"?>
<!DOCTYPE recipe SYSTEM "recipe.dtd">
<?xml-stylesheet type="text/xsl" href="recipe.xsl" ?>

<!--If you're interested in other versions of this file
email howwierd@netzero.com. -->

<!--The recipe is enclosed in recipe tags -->
<recipe>

<!--A short name for a specific recipe  -->
 <title></title>
 
<!--the name of the author of the recipe--> 
 <author></author>
 
<!--how the recipe should be classified: snack, soup, dessert, entree...   --> 
 <category></category>
 
<!--a paragraph description which precedes the recipe --> 
 <description></description>
 
<!--a little change here: each ingredient is enclosed in item tags.
all the item tags are nested or enclosed in the ingredient tags.
Add a set of item tags for each ingredient. 
-->

 <ingredients>
  <item></item>
 </ingredients>
 
<!-- directions or instructions are enclosed in a 
step tag. All step tags are nested or enclosed in
the directions tags. Directions may be enclosed in one
or more steps. Add a set of step tags for each step.
--> 
 <directions>
  <step></step>
 </directions>
  
<!--how many the recipe serves or quantiy of an item.
like: Serves four or Makes 2 dozen cookie --> 
 <yield></yield>
</recipe>

<!--If you enter a recipe in this format
email it to howwierd@netzero.com. -->





