annotate perl/pricing.pl @ 14:34fdec47b0a0 judyates

[svn r15] resized everything to fit perfectly, and increased quality by 5%
author rlm
date Mon, 12 Apr 2010 03:54:12 -0400
parents 60668cf4f443
children 903b91a97990
rev   line source
rlm@0 1 open FILE, ">../pricing.html";
rlm@0 2 select FILE;
rlm@0 3 print <<HERE;
rlm@0 4
rlm@0 5
rlm@0 6 <html>
rlm@0 7 <title>Pricing Information for Judy Yates</title>
rlm@0 8 <head>
rlm@0 9 <link rel="stylesheet" type="text/css"
rlm@0 10 href="firetest.css"> </link>
rlm@0 11 </head>
rlm@0 12 <body>
rlm@0 13 <span>
rlm@0 14 <img src = "./album_pics/3_logo.jpg"></img>
rlm@0 15 </span>
rlm@0 16 HERE
rlm@0 17 open MENU, "<../menu.html";
rlm@0 18 while (<MENU>){print;}
rlm@0 19 close MENU;
rlm@0 20 print <<HERE;
rlm@0 21
rlm@0 22
rlm@0 23 <div class = "orangebox">
rlm@0 24
rlm@0 25 <p class = "orangebox">
rlm@0 26
rlm@0 27 Large Paintings are 6 x 8 inches to 8 x 10 inches. Small Paintings are 3 x 4 inches to 5 x 7 inches. These sizes are for the stone used; the animal will be slightly smaller. All prices include shipping and handling for all locations within the continental United States. For International Orders, appropriate shipping costs will be accessed. The artist reserves the right to final decision on background color. Broken pieces are used, so sizes are approximate.<br><br>
rlm@0 28
rlm@0 29 <i>Small Painting .................... <span class = "money"> \$360</span></i><br>
rlm@0 30 <i>Large Painting .................... <span class = "money"> \$600</span></i><br>
rlm@0 31 <i>Special Requests ............... <span class = "money">Contact the Artist to Discuss Pricing</span>
rlm@0 32 </p>
rlm@0 33
rlm@0 34 </div>
rlm@0 35
rlm@0 36 HERE
rlm@0 37 open MENU, "<../menu.html";
rlm@0 38 while (<MENU>){print;}
rlm@0 39 close MENU;
rlm@0 40 print <<HERE;
rlm@0 41
rlm@0 42 </body>
rlm@0 43 </html>
rlm@0 44
rlm@0 45 HERE
rlm@0 46
rlm@0 47