<?php
$page_name = "Shortbread Cookies";
$menu_type = "food";
$menu_name = "Shortbread Cookies";
$blog_num = 61;
$page_rate = 9;
$page_tags = array();
$page_date = "December 20, 2011";
include_once("./files/head.php");

echo "<h3>Stuff to put in</h3>\n";
echo "<ul>\n";
  echo "<li>1 lb <span class=\"red\"><strong>melted butter</strong></span></li>\n";
  echo "<li>2 1/2 cups <span class=\"red\"><strong>flour</strong></span></li>\n";
  echo "<li>1 cup <span class=\"red\"><strong>icing sugar</strong></span></li>\n";
  echo "<li>1/2 cup <span class=\"red\"><strong>cornstarch</strong></span></li>\n";
  echo "<li>2 tsp <span class=\"red\"><strong>vanilla</strong></span></li>\n";
echo "</ul>\n";


echo "<h3>How to put it all together</h3>\n";
echo "<ol>\n";
  echo "<li>Mix <span class=\"pink\"><strong>everything</strong></span> except the vanilla.</li>\n";
  echo "<li>Add in <span class=\"pink\"><strong>vanilla</strong></span> slowly.</li>\n";
  echo "<li>Beat on high for 8-10 minutes.</li>\n";
  echo "<li>Bake at 325F for 8-10 minutes.</li>\n";
echo "</ol>\n";


include_once("./files/close.php");

?>