Code I

<table>
   <tr>
      <th>Recipe</th> 
      <th>Ingredients</th>
      <th>Amount</th>
   </tr>
   <tr>
      <td>Meatloaf</td>
      <td>Ground Beef</td>
      <td>1 Pound</td>

Code II
	  
<?xml version="1.0">
<recipe> 
<name>Meatloaf </name>
   <ingredients>
	<ingredient>Ground Beef
	      <amount measurement = "pounds">1</amount>
	</ingredient>
	<ingredient>Onion
	      <amount measurement = "quantity">2</amount>
	</ingredient>
  </ingredients>
</recipe>

Code III

<?xml version="1.0">
<recipe> 
<name>Meatloaf </name>
	<ingredient1>Ground Beef</ingredient1>
	<amount1 measurement = "pounds">1</amount1>
	<ingredient2>Onion</ingredient2>
	<amount2 measurement = "quantity">2</amount2>
</recipe>