summaryrefslogtreecommitdiff
path: root/67167-h/67167-h.htm
blob: 491cc693266078d7725002512eb6d6e5ca41f45d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>  <link rel="icon" href="images/cover.jpg" type="image/x-cover" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>
  The Project Gutenberg eBook of Old Songs.
</title>
<style type="text/css">

a:link {background-color:#ffffff;color:blue;text-decoration:none;}

  link {background-color:#ffffff;color:blue;text-decoration:none;}

a:visited {background-color:#ffffff;color:purple;text-decoration:none;}

a:hover {background-color:#ffffff;color:#FF0000;text-decoration:underline;}

.big {font-size: 170%;}

body{margin-left:4%;margin-right:6%;background:#ffffff;color:black;font-family:"Times New Roman", serif;font-size:medium;}

.c {text-align:center;text-indent:0%;}

.figcenter   {margin:3% auto 3% auto;clear:both;
text-align:center;text-indent:0%;
page-break-before:always;page-break-after:avoid;}

 h1 {margin-top:5%;text-align:center;clear:both;
font-weight:normal;letter-spacing:.2em;}

 h2 {margin-top:4%;margin-bottom:2%;text-align:center;clear:both;
 font-size:100%;font-weight:normal;}

 hr.full {width: 60%;margin:2% auto 2% auto;border-top:1px solid black;
padding:.1em;border-bottom:1px solid black;border-left:none;border-right:none;}

 img {border:none;}

.lspc {letter-spacing:.2em;}

.lftspc {margin-left:.25em;}

.letra {font-size:250%;float:left;margin-top:-3%;
margin-bottom:0%;
padding-right:.15em;padding-bottom:0%;}

 p {margin-top:.2em;text-align:justify;margin-bottom:.2em;text-indent:4%;}

.pagenum  {font-style:normal;position:absolute;
left:95%;font-size:55%;text-align:right;color:gray;
background-color:#ffffff;font-variant:normal;font-style:normal;font-weight:normal;text-decoration:none;text-indent:0em;}
.x-bookmaker .pagenum {display: none;}

.rt {text-align:right;}

small {font-size: 70%;}

.smcap  {font-variant:small-caps;font-size:100%;}

.subhd {font-size:80%;letter-spacing:.18em;}

table {margin-top:2%;margin-bottom:2%;margin-left:auto;margin-right:auto;border:none;}

div.poetry {text-align:center;}
div.poem {font-size:100%;margin:auto auto;text-indent:0%;
display: inline-block; text-align: left;}

div.poem1 {font-size:100%;margin:5% auto;text-indent:0%;
display: inline-block; text-align: left;}

.poem .stanza     {margin-top: 1em;margin-bottom:1em;}
.poem span.i0     {display: block; margin-left: 0em; padding-left: 3em; text-indent: -3em;}
.poem span.i2     {display: block; margin-left: 1em; padding-left: 3em; text-indent: -3em;}
.poem span.i3     {display: block; margin-left: 2em; padding-left: 3em; text-indent: -3em;}
.poem span.i4     {display: block; margin-left: 3em; padding-left: 3em; text-indent: -3em;}
.poem span.i5     {display: block; margin-left: 3.5em; padding-left: 3em; text-indent: -3em;}
.poem span.i6     {display: block; margin-left: 4em; padding-left: 3em; text-indent: -3em;}

.poem span.ig {
margin:auto auto;}

.poem span.ih {
margin:auto .1em;}
</style>
  </head>
<body>
<div>*** START OF THE PROJECT GUTENBERG EBOOK 67167 ***</div>
<hr class="full" />

<div class="figcenter">
<a href="images/cover.jpg">
<img src="images/cover.jpg" height="550" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_i" id="page_i">{i}</a></span>&#160; </p>

<p><span class="pagenum"><a name="page_ii" id="page_ii">{ii}</a></span>&#160; </p>

<p><span class="pagenum"><a name="page_iii" id="page_iii">{iii}</a></span>&#160; </p>

<p class="c"><span class="lspc">OLD SONGS</span></p>

<div class="figcenter">
<a href="images/title.jpg">
<img src="images/title.jpg" width="452" alt="[Image unavailable.]" /></a>
</div>

<h1><span class="big">O</span>LD SONGS</h1>

<p class="c">WITH DRAWINGS BY<br />
<span style="margin-left: 4em;">EDWIN A · ABBEY</span><br />
<span style="margin-left: 8em;">&amp; ALFRED PARSONS</span>
</p>

<div class="poetry"><div class="poem1">
NEW YORK · HARPER &amp; BROTHERS · PRINTERS &amp;<br />
PUBLISHERS · FRANKLIN SQUARE · M DCCC LXXXIX
</div></div>

<p><span class="pagenum"><a name="page_iv" id="page_iv">{iv}</a></span>&#160; </p>

<p class="c"><small><i>COPYRIGHT, 1888, BY</i><br />
<br />
<i>HARPER &amp; BROTHERS</i>.<br />
<br />
<i>All Rights Reserved.</i><br /></small>
<span class="pagenum"><a name="page_v" id="page_v">{v}</a></span></p>

<h2><a name="Contents" id="Contents"></a>
<a href="images/i_i.jpg">
<img src="images/i_i.jpg" width="278" height="149" alt="CONTENTS" /></a>
</h2>

<table cellpadding="4">
<tr><td>&#160; </td><td class="rt"><small><i>PAGE</i></small></td></tr>

<tr><td><a href="#A_LOVE_SONG"><i>A Love Song</i></a></td><td class="rt" valign="bottom"><a href="#page_1"><i>1</i></a></td></tr>

<tr><td><a href="#WHY_CANST_THOU_NOT_AS_OTHERS_DO">“<i>Why canst Thou not, as Others do</i>”</a></td><td class="rt" valign="bottom"><a href="#page_15"><i>15</i></a></td></tr>

<tr><td><a href="#WITH_JOCKEY_TO_THE_FAIR">“<i>With Jockey to the Fair</i></a>”</td><td class="rt" valign="bottom"><a href="#page_19"><i>19</i></a></td></tr>

<tr><td><a href="#SWEET_NELLY_MY_HEARTS_DELIGHT">“<i>Sweet Nelly, my Heart’s Delight</i>”</a></td><td class="rt" valign="bottom"><a href="#page_27"><i>27</i></a></td></tr>

<tr><td><a href="#WHAT_HAP_HAD_I_TO_MARRY_A_SHROW">“<i>What hap had I to Marry a Shrow</i></a>”</td><td class="rt" valign="bottom"><a href="#page_33"><i>33</i></a></td></tr>

<tr><td><a href="#THE_LEATHER_BOTTEL"><i>The Leather Bottèl</i></a></td><td class="rt" valign="bottom"><a href="#page_37"><i>37</i></a></td></tr>

<tr><td><a href="#NEVER_LOVE_THEE_MORE"><i>Never Love Thee More</i></a></td><td class="rt" valign="bottom"><a href="#page_49"><i>49</i></a></td></tr>

<tr><td><a href="#HERES_TO_THE_MAIDEN_OF_BASHFUL_FIFTEEN">“<i>Here’s to the Maiden of Bashful Fifteen</i></a>”</td><td class="rt" valign="bottom"><a href="#page_53"><i>53</i></a></td></tr>

<tr><td><a href="#BARBARA_ALLEN"><i>Barbara Allen</i></a></td><td class="rt" valign="bottom"><a href="#page_57"><i>57</i></a></td></tr>

<tr><td><a href="#PERIGOT_AND_CUDDYS_ROUNDELAY"><i>Perigot and Cuddy’s Roundelay</i></a></td><td class="rt" valign="bottom"><a href="#page_67"><i>67</i></a>
<span class="pagenum"><a name="page_vi" id="page_vi">{vi}</a></span></td></tr>

<tr><td><a href="#SALLY_IN_OUR_ALLEY"><i>Sally in Our Alley</i></a></td><td class="rt" valign="bottom"><a href="#page_73"><i>73</i></a></td></tr>

<tr><td><a href="#EARLY_ONE_MORNING">“<i>Early One Morning</i></a>”</td><td class="rt" valign="bottom"><a href="#page_85"><i>85</i></a></td></tr>

<tr><td><a href="#KITTY_OF_COLERAINE"><i>Kitty of Coleraine</i></a></td><td class="rt" valign="bottom"><a href="#page_89"><i>89</i></a></td></tr>

<tr><td><a href="#OLD_KING_COLE"><i>Old King Cole</i></a></td><td class="rt" valign="bottom"><a href="#page_97"><i>97</i></a></td></tr>

<tr><td><a href="#HARVEST-HOME"><i>Harvest Home</i></a></td><td class="rt" valign="bottom"><a href="#page_101"><i>101</i></a></td></tr>

<tr><td><a href="#TWAS_DOWN_IN_CUPIDS_GARDEN"><i>Down in Cupid’s Garden</i></a></td><td class="rt" valign="bottom"><a href="#page_107"><i>107</i></a></td></tr>

<tr><td><a href="#page_111"><i>Phillada Flouts Me</i></a></td><td class="rt" valign="bottom"><a href="#page_111"><i>111</i></a></td></tr>
</table>

<p><span class="pagenum"><a name="page_1" id="page_1">{1}</a></span>&#160; </p>

<div class="figcenter">
<a href="images/i-2.jpg">
<img src="images/i-2.jpg" width="167" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_2" id="page_2">{2}</a></span>&#160; </p>

<div class="figcenter">
<a href="images/ill_pg_001.jpg">
<img src="images/ill_pg_001.jpg" height="550" alt="A LOVE SONG" /></a>
</div>

<p><span class="pagenum"><a name="page_3" id="page_3">{3}</a></span>&#160; </p>

<div class="figcenter">
<a href="images/ill_pg_002.jpg">
<img src="images/ill_pg_002.jpg" width="239" alt="[Image unavailable.]" /></a>
</div>

<div class="figcenter">
<a href="images/ill_pg_003.jpg">
<img src="images/ill_pg_003.jpg" width="407" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="A_LOVE_SONG" id="A_LOVE_SONG"></a><i>A LOVE SONG.</i><br /><br />
<span class="subhd">BY GEORGE WITHER.</span></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_i.png"
width="60"
alt="I" /></span> lov’d a lasse, a faire one,<br /></span>
<span class="ih">As faire as e’er was seene;<br /></span>
<span class="i0">She was, indeed, a rare one,<br /></span>
<span class="i2">Another Sheba queen;<span class="pagenum"><a name="page_4" id="page_4">{4}</a></span><br /></span>
</div><div class="stanza">
<span class="i0">But, foole, as then I was,<br /></span>
<span class="i2">I thought she lov’d me too;<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div><div class="stanza">
<span class="i0">Her haire, like gold, did glister;<br /></span>
<span class="i2">Each eye was like a starre;<br /></span>
<span class="i0">She did surpasse her sister,<br /></span>
<span class="i2">Which past all others farre:<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_004.jpg">
<img src="images/ill_pg_004.jpg" width="229" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_5" id="page_5">{5}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_005.jpg">
<img src="images/ill_pg_005.jpg" width="370" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">She would me hony call:<br /></span>
<span class="i2">She’d, oh, she’d kisse me too!<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div></div>
</div>

<p><span class="pagenum"><a name="page_6" id="page_6">{6}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">In summer-time, to Medley<br /></span>
<span class="i2">My love and I would goe&mdash;<br /></span>
<span class="i0">The boatmen there stood readie<br /></span>
<span class="i2">My love and I to rowe;<br /></span>
<span class="i0">For creame there would we call,<br /></span>
<span class="i2">For cakes, and for prunes too;<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_006.jpg">
<img src="images/ill_pg_006.jpg" width="228" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Many a merry meeting<br /></span>
<span class="i2">My love and I have had:<br /></span>
<span class="i0">She was my onely sweeting;<br /></span>
<span class="i2">She made my heart full glad:<span class="pagenum"><a name="page_7" id="page_7">{7}</a></span><br /></span>
<span class="i0">The teares stood in her eyes,<br /></span>
<span class="i2">Like to the morning-dew;<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div><div class="stanza">
<span class="i0">And as abroad we walked,<br /></span>
<span class="i2">As lovers’ fashion is,<br /></span>
<span class="i0">Oft, as we sweetly talked,<br /></span>
<span class="i2">The sun would steale a kisse;<br /></span>
<span class="i0">The winde upon her lips<br /></span>
<span class="i2">Likewise most sweetly blew;<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div><div class="stanza">
<span class="i0">Her cheekes were like the cherrie,<br /></span>
<span class="i2">Her skin as white as snow;<br /></span>
<span class="i0">When she was blyth and merrie,<br /></span>
<span class="i2">She angel-like did show;<br /></span>
<span class="i0">Her wast exceeding small,<br /></span>
<span class="i2">The fives did fit her shoo;<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div><div class="stanza">
<span class="i0">In summer-time or winter<br /></span>
<span class="i2">She had her heart’s desire;<br /></span>
<span class="i0">I stil did scorne to stint her<br /></span>
<span class="i2">From sugar, sacke, or fire:<br /></span>
<span class="i0">The world went round about;<br /></span>
<span class="i2">No cares we ever knew;<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
<span class="pagenum"><a name="page_8" id="page_8">{8}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_008.jpg">
<img src="images/ill_pg_008.jpg" width="253" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">As we walked home together,<br /></span>
<span class="i2">At midnight, through the towne,<br /></span>
<span class="i0">To keepe away the weather,<br /></span>
<span class="i2">O’re her I’d cast my gowne;<br /></span>
<span class="i0">No colde my love should feele,<br /></span>
<span class="i2">Whate’er the heavens could doe;<br /></span>
<span class="i0">But, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
<span class="pagenum"><a name="page_9" id="page_9">{9}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_009.jpg">
<img src="images/ill_pg_009.jpg" width="384" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_10" id="page_10">{10}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Like doves we would be billing,<br /></span>
<span class="i2">And clip and kisse so fast,<br /></span>
<span class="i0">Yet she would be unwilling<br /></span>
<span class="i2">That I should kisse the last:<br /></span>
<span class="i0">They’re Judas kisses now,<br /></span>
<span class="i2">Since that they prov’d untrue;<br /></span>
<span class="i0">For, now, alasse! sh’as left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_010.jpg">
<img src="images/ill_pg_010.jpg" width="249" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_11" id="page_11">{11}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">To maidens’ vowes and swearing<br /></span>
<span class="i2">Henceforth no credit give;<br /></span>
<span class="i0">You may give them the hearing,<br /></span>
<span class="i2">But never them beleeve:<br /></span>
<span class="i0">They are as false as faire,<br /></span>
<span class="i2">Unconstant, fraile, untrue;<br /></span>
<span class="i0">For mine, alasse! hath left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div><div class="stanza">
<span class="i0">’Twas I that paid for all things,<br /></span>
<span class="i2">’Twas others dranke the wine;<br /></span>
<span class="i0">I cannot now recall things,<br /></span>
<span class="i2">Live but a foole to pine:<br /></span>
<span class="i0">’Twas I that beat the bush,<br /></span>
<span class="i2">The bird to others flew;<br /></span>
<span class="i0">For she, alasse! hath left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div><div class="stanza">
<span class="i0">If ever that Dame Nature,<br /></span>
<span class="i2">For this false lover’s sake,<br /></span>
<span class="i0">Another pleasing creature<br /></span>
<span class="i2">Like unto her would make,<br /></span>
<span class="i0">Let her remember this,<br /></span>
<span class="i2">To make the other true;<br /></span>
<span class="i0">For this, alasse! hath left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div><div class="stanza">
<span class="i0">No riches, now, can raise me,<br /></span>
<span class="i2">No want make me despaire,<br /></span>
<span class="i0">No miserie amaze me,<br /></span>
<span class="i2">Nor yet for want I care:<br /></span>
<span class="pagenum"><a name="page_12" id="page_12">{12}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_012.jpg">
<img src="images/ill_pg_012.jpg" width="380" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_13" id="page_13">{13}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">I have lost a world it selfe.<br /></span>
<span class="i2">My earthly heaven, adue!<br /></span>
<span class="i0">Since she, alasse! hath left me,<br /></span>
<span class="i2"><i>Falero, lero, loo</i>.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_013.jpg">
<img src="images/ill_pg_013.jpg" width="178" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_14" id="page_14">{14}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_014.jpg">
<img src="images/ill_pg_014.jpg" width="134" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_15" id="page_15">{15}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_015.jpg">
<img src="images/ill_pg_015.jpg" width="266" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="WHY_CANST_THOU_NOT_AS_OTHERS_DO" id="WHY_CANST_THOU_NOT_AS_OTHERS_DO"></a>“<i>WHY CANST THOU NOT, AS OTHERS DO?</i>”</h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_w.png"
width="60"
alt="W" /></span>HY canst thou not, as others do,<br /></span>
<span class="ih">Look on me with unwounding eyes?<br /></span>
<span class="i0">And yet look sweet, but yet not so,<br /></span>
<span class="i2">Smile, but not in killing wise;<br /></span>
<span class="i0">Arm not thy graces to confound;<br /></span>
<span class="i0">Only look, but do not wound.<br /></span>
</div><div class="stanza">
<span class="i0">Why should mine eyes see more in you<br /></span>
<span class="i2">Than they can see in all the rest?<br /></span>
<span class="i0">For I can others’ beauties view,<br /></span>
<span class="i2">And not find my heart opprest.<br /></span>
<span class="i0">O be as others are to me,<br /></span>
<span class="i0">Or let me be more to thee.<br /></span>
<span class="pagenum"><a name="page_17" id="page_17">{17}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_017.jpg">
<img src="images/ill_pg_017.jpg" width="374" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_18" id="page_18">{18}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_018.jpg">
<img src="images/ill_pg_018.jpg" width="149" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_19" id="page_19">{19}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_019.jpg">
<img src="images/ill_pg_019.jpg" width="298" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="WITH_JOCKEY_TO_THE_FAIR" id="WITH_JOCKEY_TO_THE_FAIR"></a>“<i>WITH JOCKEY TO THE FAIR.</i>”</h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_tw.png"
width="60"
alt="’T" /></span>WAS on the morn of sweet May-day,<br /></span>
<span class="ig">When nature painted all things gay&mdash;<br /></span>
<span class="i0">Taught birds to sing and lambs to play<br /></span>
<span class="i4">And deck’d the meadows fair&mdash;<br /></span>
<span class="i0">Young Jockey early in the morn<br /></span>
<span class="i0">Arose and tripped it o’er the lawn.<br /></span>
<span class="i0">His Sunday coat the youth put on;<br /></span>
<span class="i0">For Jenny had vowed away to run<br /></span>
<span class="i4">With Jockey to the fair.<br /></span>
</div><div class="stanza">
<span class="i0">The cheerful parish bells had rung.<br /></span>
<span class="i0">With eager steps he trudg’d along;<br /></span>
<span class="i0">Sweet flowing garlands round him hung,<br /></span>
<span class="i4">Which shepherds us’d to wear.<br /></span>
<span class="i0">He tapp’d the window. “Hush, my dear!”<br /></span>
<span class="i0">Jenny, impatient, cried, “Who’s there?”<br /></span>
<span class="i0">“<span class="lftspc">’</span>Tis I, my love, and no one near.<br /></span>
<span class="i0">Step gently down, you’ve naught to fear<br /></span>
<span class="i4">With Jockey to the fair.”<br /></span>
<span class="pagenum"><a name="page_21" id="page_21">{21}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_021.jpg">
<img src="images/ill_pg_021.jpg" width="338" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_22" id="page_22">{22}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_022.jpg">
<img src="images/ill_pg_022.jpg" width="373" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_23" id="page_23">{23}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">“My dad and mammy ’re fast asleep.<br /></span>
<span class="i0">My brother up and with the sheep.<br /></span>
<span class="i0">And will you still your promise keep,<br /></span>
<span class="i4">Which I have heard you swear?<br /></span>
<span class="i0">And will you ever constant prove?”<br /></span>
<span class="i0">“I will, by all the pow’rs above!<br /></span>
<span class="i0">And ne’er deceive my charming dove.<br /></span>
<span class="i0">Dispel those doubts, and haste, my love,<br /></span>
<span class="i4">With Jockey to the fair.”<br /></span>
</div><div class="stanza">
<span class="i0">“Behold the ring!” the shepherd cried.<br /></span>
<span class="i0">“Will Jenny be my charming bride?<br /></span>
<span class="i0">Let Cupid be our happy guide,<br /></span>
<span class="i4">And Hymen meet us there.”<br /></span>
<span class="i0">Then Jockey did his vows renew&mdash;<br /></span>
<span class="i0">He would be constant, would be true.<br /></span>
<span class="i0">His word was pledged, away she flew,<br /></span>
<span class="i0">With cowslips sparkling with the dew,<br /></span>
<span class="i4">With Jockey to the fair.<br /></span>
</div><div class="stanza">
<span class="i0">Soon did they meet a joyful throng.<br /></span>
<span class="i0">Their gay companions, blithe and young,<br /></span>
<span class="i0">Each joins the dance, each joins the song<br /></span>
<span class="i4">To hail the happy pair.<br /></span>
<span class="i0">What two were e’er so fond as they?<br /></span>
<span class="i0">All bless the kind propitious day&mdash;<br /></span>
<span class="i0">The smiling morn, the blooming May,<br /></span>
<span class="i0">When lovely Jenny ran away<br /></span>
<span class="i4">With Jockey to the fair.<br /></span>
<span class="pagenum"><a name="page_24" id="page_24">{24}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_024.jpg">
<img src="images/ill_pg_024.jpg" width="376" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_25" id="page_25">{25}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_025.jpg">
<img src="images/ill_pg_025.jpg" width="390" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_26" id="page_26">{26}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_026.jpg">
<img src="images/ill_pg_026.jpg" width="190" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_27" id="page_27">{27}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_027.jpg">
<img src="images/ill_pg_027.jpg" width="254" alt="[Image unavailable.]" /></a>
</div>

<div class="figcenter">
<a href="images/ill_pg_028.jpg">
<img src="images/ill_pg_028.jpg" width="227" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_29" id="page_29">{29}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_029.jpg">
<img src="images/ill_pg_029.jpg" width="366" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="SWEET_NELLY_MY_HEARTS_DELIGHT" id="SWEET_NELLY_MY_HEARTS_DELIGHT"></a>“<i>SWEET NELLY, MY HEART’S DELIGHT.</i>”</h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0"><span class="smcap">He.</span>
<img src="images/ill_s.png"
alt="S"
style="vertical-align:middle;font-size:250%;"
width="60" />WEET Nelly, my heart’s delight,<br /></span>
<span class="i5">Be loving, and do not slight<br /></span>
<span class="i6">The proffer I make<br /></span>
<span class="i6">For modesty’s sake.<br /></span>
<span class="i4">I honor your beauty bright;<br /></span>
<span class="i6">For love I profess,<br /></span>
<span class="i6">I can do no less.<br /></span>
<span class="i4">Thou hast my favor won.<br /></span>
<span class="i6">And since I see<br /></span>
<span class="i6">Your modesty,<br /></span>
<span class="i6">I pray you agree,<br /></span>
<span class="i6">And fancy me,<br /></span>
<span class="i4">Though I’m but a farmer’s son.<span class="pagenum"><a name="page_30" id="page_30">{30}</a></span><br /></span>
</div><div class="stanza">
<span class="i0"><span class="smcap">She.</span> No; I am a lady gay;<br /></span>
<span class="i5">It is very well known I may<br /></span>
<span class="i6">Have men of renown<br /></span>
<span class="i6">In country or town.<br /></span>
<span class="i4">So, Roger, without delay<br /></span>
<span class="i6">Court Bridget, or Sue,<br /></span>
<span class="i6">Kate, Nancy, or Prue;<br /></span>
<span class="i4">Their loves will soon be won;<br /></span>
<span class="i6">But don’t you dare<br /></span>
<span class="i6">To speak me fair,<br /></span>
<span class="i6">As if I were<br /></span>
<span class="i6">At my last pray’r<br /></span>
<span class="i4">To marry a farmer’s son.<br /></span>
</div><div class="stanza">
<span class="i0"><span class="smcap">He.</span> My father has riches in store,<br /></span>
<span class="i4">Two hundred a year and more,<br /></span>
<span class="i6">Besides sheep and cows,<br /></span>
<span class="i6">Carts, harrows, and ploughs<br /></span>
<span class="i4">His age is above threescore,<br /></span>
<span class="i6">And when he does die,<br /></span>
<span class="i6">Then merrily I<br /></span>
<span class="i4">Shall have what he has won.<br /></span>
<span class="i6">Both land and kine,<br /></span>
<span class="i6">All shall be thine,<br /></span>
<span class="i6">If thou’lt incline,<br /></span>
<span class="i6">And will be mine,<br /></span>
<span class="i4">And marry a farmer’s son.<br /></span>
</div><div class="stanza">
<span class="i0"><span class="smcap">She.</span> A fig for your cattle and corn!<br /></span>
<span class="i4">Your proffered love I scorn.<br /></span>
<span class="i6">’Tis known very well<br /></span>
<span class="i6">My name it is Nell,<br /></span>
<span class="i4">And you’re but a bumpkin born.<br /></span>
<span class="pagenum"><a name="page_31" id="page_31">{31}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_031.jpg">
<img src="images/ill_pg_031.jpg" width="344" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0"><span class="smcap">He.</span> Well, since it is so,<br /></span>
<span class="i6">Away I will go,<br /></span>
<span class="i4">And I hope no harm is done.<br /></span>
<span class="i6">Farewell! adieu!<br /></span>
<span class="i6">I hope to woo<br /></span>
<span class="i6">As good as you,<br /></span>
<span class="i6">And win her too,<br /></span>
<span class="i4">Though I’m but a farmer’s son.<br /></span>
</div><div class="stanza">
<span class="i0"><span class="smcap">She.</span> Be not in such haste, quoth she;<br /></span>
<span class="i4">Perhaps we may still agree,<span class="pagenum"><a name="page_32" id="page_32">{32}</a></span><br /></span>
<span class="i6">For, man, I protest<br /></span>
<span class="i6">I was but in jest;<br /></span>
<span class="i4">Come, prithee, sit down by me.<br /></span>
<span class="i6">For thou art the man<br /></span>
<span class="i6">That verily can<br /></span>
<span class="i4">Win me if e’er I’m won.<br /></span>
<span class="i6">Both straight and tall,<br /></span>
<span class="i6">Genteel withal,<br /></span>
<span class="i6">Therefore I shall<br /></span>
<span class="i6">Be at your call<br /></span>
<span class="i4">To marry a farmer’s son.<br /></span>
</div><div class="stanza">
<span class="i0"><span class="smcap">He.</span> Dear Nelly, believe me now,<br /></span>
<span class="i4">I solemnly swear and vow<br /></span>
<span class="i6">No lords in their lives<br /></span>
<span class="i6">Take pleasure in wives<br /></span>
<span class="i4">Like we that do drive the plough.<br /></span>
<span class="i6">Whatever we gain<br /></span>
<span class="i6">With labor or pain,<br /></span>
<span class="i4">We don’t after wantons run,<br /></span>
<span class="i6">As courtiers do.<br /></span>
<span class="i6">And I never knew<br /></span>
<span class="i6">A London beau<br /></span>
<span class="i6">That could outdo<br /></span>
<span class="i4">A country farmer’s son.<br /></span>
<span class="pagenum"><a name="page_33" id="page_33">{33}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_033.jpg">
<img src="images/ill_pg_033.jpg" width="312" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="WHAT_HAP_HAD_I_TO_MARRY_A_SHROW" id="WHAT_HAP_HAD_I_TO_MARRY_A_SHROW"></a>“<i>WHAT HAP HAD I TO MARRY A SHROW!</i>”</h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_w.png"
width="60"
alt="W" /></span>HAT hap had I to marry a shrow!<br /></span>
<span class="ih">For she hath given me many a blow,<br /></span>
<span class="ih">And how to please her, alack! I do not know.<br /></span>
</div><div class="stanza">
<span class="i0">From morn to even her tongue ne’er lies;<br /></span>
<span class="i0">Sometimes she brawls, sometimes she cries;<br /></span>
<span class="i0">Yet I can scarce keep her talents from mine eyes.<br /></span>
</div><div class="stanza">
<span class="i0">If I go abroad and late come in,<br /></span>
<span class="i0">“Sir Knave,” saith she, “where have you been?”<br /></span>
<span class="i0">And do I well or ill, she claps me on the skin.<br /></span>
<span class="pagenum"><a name="page_35" id="page_35">{35}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_035.jpg">
<img src="images/ill_pg_035.jpg" width="383" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_36" id="page_36">{36}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_036.jpg">
<img src="images/ill_pg_036.jpg" width="230" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_37" id="page_37">{37}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_037.jpg">
<img src="images/ill_pg_037.jpg" width="272" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_38" id="page_38">{38}</a></span></p>

<h2><a name="THE_LEATHER_BOTTEL" id="THE_LEATHER_BOTTEL"></a><i>THE LEATHER BOTTÈL.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_tw.png"
width="60"
alt="’T" /></span>WAS God above that made all things,<br /></span>
<span class="ih">The heav’ns, the earth, and all therein,<br /></span>
<span class="ih">The ships that on the sea do swim<br /></span>
<span class="ih">To guard from foes that none come in;<br /></span>
<span class="i0">And let them all do what they can,<br /></span>
<span class="i0">’Twas for one end&mdash;the use of man.<br /></span>
<span class="i4">So I wish in heav’n his soul may dwell<br /></span>
<span class="i4">That first found out the leather bottèl.<br /></span>
</div><div class="stanza">
<span class="i0">Now, what do you say to these cans of wood?<br /></span>
<span class="i0">Oh no, in faith they cannot be good;<br /></span>
<span class="i0">For if the bearer fall by the way,<br /></span>
<span class="i0">Why, on the ground your liquor doth lay;<br /></span>
<span class="i0">But had it been in a leather bottèl,<br /></span>
<span class="i0">Although he had fallen all had been well.<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
<span class="pagenum"><a name="page_39" id="page_39">{39}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_039.jpg">
<img src="images/ill_pg_039.jpg" width="364" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Then what do you say to these glasses fine?<br /></span>
<span class="i0">Oh, they shall have no praise of mine,<br /></span>
<span class="i0">For if you chance to touch the brim,<br /></span>
<span class="i0">Down falls the liquor and all therein;<br /></span>
<span class="i0">But had it been in a leather bottèl,<br /></span>
<span class="i0">And the stoppel in, all had been well.<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
<span class="pagenum"><a name="page_40" id="page_40">{40}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_040.jpg">
<img src="images/ill_pg_040.jpg" width="310" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_41" id="page_41">{41}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_041.jpg">
<img src="images/ill_pg_041.jpg" width="294" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_42" id="page_42">{42}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_042.jpg">
<img src="images/ill_pg_042.jpg" width="243" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Then what do you say to these black pots three?<br /></span>
<span class="i0">If a man and his wife should not agree,<br /></span>
<span class="i0">Why, they’ll tug and pull till their liquor doth spill;<br /></span>
<span class="i0">In a leather bottèl they may tug their fill,<br /></span>
<span class="i0">And pull away till their hearts do ake,<br /></span>
<span class="i0">And yet their liquor no harm can take.<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
<span class="pagenum"><a name="page_43" id="page_43">{43}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_043.jpg">
<img src="images/ill_pg_043.jpg" width="588" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_44" id="page_44">{44}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Then what do you say to these flagons fine?<br /></span>
<span class="i0">Oh, they shall have no praise of mine,<br /></span>
<span class="i0">For when a Lord is about to dine,<br /></span>
<span class="i0">And sends them to be filled with wine,<br /></span>
<span class="i0">The man with the flagon doth run away,<br /></span>
<span class="i0">Because it is silver most gallant and gay.<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
</div><div class="stanza">
<span class="i0">A leather bottèl we know is good,<br /></span>
<span class="i0">Far better than glasses or cans of wood,<br /></span>
<span class="i0">For when a man’s at work in the field,<br /></span>
<span class="i0">Your glasses and pots no comfort will yield;<br /></span>
<span class="i0">But a good leather bottle standing by<br /></span>
<span class="i0">Will raise his spirits whenever he’s dry.<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
</div><div class="stanza">
<span class="i0">At noon, the haymakers sit them down,<br /></span>
<span class="i0">To drink from their bottles of ale nut-brown;<br /></span>
<span class="i0">In summer, too, when the weather is warm,<br /></span>
<span class="i0">A good bottle full will do them no harm.<br /></span>
<span class="i0">Then the lads and the lasses begin to tottle,<br /></span>
<span class="i0">But what would they do without this bottle?<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
</div><div class="stanza">
<span class="i0">There’s never a Lord, an Earl, or Knight,<br /></span>
<span class="i0">But in this bottle doth take delight;<br /></span>
<span class="i0">For when he’s hunting of the deer,<br /></span>
<span class="i0">He oft doth wish for a bottle of beer.<br /></span>
<span class="i0">Likewise the man that works in the wood,<br /></span>
<span class="i0">A bottle of beer will oft do him good.<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
<span class="pagenum"><a name="page_45" id="page_45">{45}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_045.jpg">
<img src="images/ill_pg_045.jpg" width="582" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_46" id="page_46">{46}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_046.jpg">
<img src="images/ill_pg_046.jpg" width="593" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_47" id="page_47">{47}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">And when the bottle at last grows old,<br /></span>
<span class="i0">And will good liquor no longer hold,<br /></span>
<span class="i0">Out of the side you may take a clout,<br /></span>
<span class="i0">To mend your shoes when they’re worn out;<br /></span>
<span class="i0">Or take and hang it up on a pin,<br /></span>
<span class="i0">’Twill serve to put hinges and odd things in.<br /></span>
<span class="i4"><i>So I wish in heav’n</i>, etc.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_047.jpg">
<img src="images/ill_pg_047.jpg" width="175" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_48" id="page_48">{48}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_048.jpg">
<img src="images/ill_pg_048.jpg" width="136" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_49" id="page_49">{49}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_049.jpg">
<img src="images/ill_pg_049.jpg" width="271" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_50" id="page_50">{50}</a></span></p>

<h2><a name="NEVER_LOVE_THEE_MORE" id="NEVER_LOVE_THEE_MORE"></a><i>NEVER LOVE THEE MORE.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_m.png"
width="60"
alt="M" /></span>Y dear and only love, take heed<br /></span>
<span class="ih">How thou thyself expose<br /></span>
<span class="ih">By letting longing lovers feed<br /></span>
<span class="i2">Upon such looks as those.<br /></span>
<span class="i0">I’ll marble-wall thee round about,<br /></span>
<span class="i2">And build without a door;<br /></span>
<span class="i0">But if thy heart do once break out,<br /></span>
<span class="i2">I’ll never love thee more.<br /></span>
</div><div class="stanza">
<span class="i0">Let not their oaths, by volleys shot,<br /></span>
<span class="i2">Make any breach at all,<br /></span>
<span class="i0">Nor smoothness of their language plot<br /></span>
<span class="i2">A way to scale the wall;<br /></span>
<span class="i0">No balls of wildfire love consume<br /></span>
<span class="i2">The shrine which I adore;<br /></span>
<span class="i0">For if such smoke about it fume,<br /></span>
<span class="i2">I’ll never love thee more.<br /></span>
<span class="pagenum"><a name="page_51" id="page_51">{51}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_051.jpg">
<img src="images/ill_pg_051.jpg" width="313" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_52" id="page_52">{52}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Then if by fraud or by consent<br /></span>
<span class="i2">To ruin thou shouldst come,<br /></span>
<span class="i0">I’ll sound no trouble as of wont,<br /></span>
<span class="i2">Nor march by beat of drum,<br /></span>
<span class="i0">But fold my arms, like ensigns, up,<br /></span>
<span class="i2">Thy falsehood to deplore,<br /></span>
<span class="i0">And after such a bitter cup<br /></span>
<span class="i2">I’ll never love thee more.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_052.jpg">
<img src="images/ill_pg_052.jpg" width="117" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_53" id="page_53">{53}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_053.jpg">
<img src="images/ill_pg_053.jpg" width="276" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="HERES_TO_THE_MAIDEN_OF_BASHFUL_FIFTEEN" id="HERES_TO_THE_MAIDEN_OF_BASHFUL_FIFTEEN"></a>“<i>HERE’S TO THE MAIDEN OF BASHFUL FIFTEEN.</i>”</h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_h.png"
width="60"
alt="H" /></span>ERE’S to the maiden of bashful fifteen,<br /></span>
<span class="ih">Now to the widow of fifty;<br /></span>
<span class="ih">Here’s to the flaunting extravagant quean,<br /></span>
<span class="i2">And here’s to the housewife that’s thrifty.<br /></span>
<span class="i4">Let the toast pass,<br /></span>
<span class="i4">Drink to the lass;<br /></span>
<span class="i4">I warrant she’ll prove<br /></span>
<span class="i4">An excuse for the glass.<br /></span>
</div><div class="stanza">
<span class="i0">Here’s to the charmer whose dimples we prize,<br /></span>
<span class="i2">Now to the damsel with none, sir;<br /></span>
<span class="i0">Here’s to the girl with a pair of blue eyes,<br /></span>
<span class="i2">And now to the nymph with but one, sir.<br /></span>
<span class="i4"><i>Let the toast</i>, etc.<br /></span>
</div><div class="stanza">
<span class="i0">Here’s to the maid with a bosom of snow,<br /></span>
<span class="i2">Now to her that’s as brown as a berry;<br /></span>
<span class="i0">Here’s to the wife with a face full of woe,<br /></span>
<span class="i2">And now to the damsel that’s merry.<br /></span>
<span class="i4"><i>Let the toast</i>, etc.<br /></span>
<span class="pagenum"><a name="page_55" id="page_55">{55}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_055.jpg">
<img src="images/ill_pg_055.jpg" width="344" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_56" id="page_56">{56}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">For let her be clumsy or let her be slim,<br /></span>
<span class="i2">Young or ancient, I care not a feather;<br /></span>
<span class="i0">So fill up a bumper, nay, fill to the brim,<br /></span>
<span class="i2">And let us e’en toast ’em together.<br /></span>
<span class="i4"><i>Let the toast</i>, etc.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_056.jpg">
<img src="images/ill_pg_056.jpg" width="146" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_57" id="page_57">{57}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_057.jpg">
<img src="images/ill_pg_057.jpg" width="266" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_58" id="page_58">{58}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_058.jpg">
<img src="images/ill_pg_058.jpg" width="199" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_59" id="page_59">{59}</a></span></p>

<h2><a name="BARBARA_ALLEN" id="BARBARA_ALLEN"></a><i>BARBARA ALLEN.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_a.png"
width="60"
alt="A" /></span>LL in the merry Month of May,<br /></span>
<span class="ih">when green leaves they was springing,<br /></span>
<span class="i0">This young man on his Death-bed lay,<br /></span>
<span class="i2">for the love of <i>Barbara Allen</i>.<br /></span>
</div><div class="stanza">
<span class="i0">He sent his man unto her then,<br /></span>
<span class="i2">in the Town where she was dwelling:<br /></span>
<span class="i0">You must come to my Master dear,<br /></span>
<span class="i2">if your name be <i>Barbara Allen</i>.<br /></span>
</div><div class="stanza">
<span class="i0">For Death is printed in his face,<br /></span>
<span class="i2">and Sorrow’s in him dwelling,<br /></span>
<span class="i0">And you must come to my Master dear,<br /></span>
<span class="i2">if your name is <i>Barbara Allen</i>.<span class="pagenum"><a name="page_60" id="page_60">{60}</a></span><br /></span>
</div><div class="stanza">
<span class="i0">If Death be printed on his face,<br /></span>
<span class="i2">and Sorrow’s in him dwelling,<br /></span>
<span class="i0">Then little better shall he be<br /></span>
<span class="i2">for Bonny <i>Barbara Allen</i>.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_060.jpg">
<img src="images/ill_pg_060.jpg" width="384" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_61" id="page_61">{61}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_061.jpg">
<img src="images/ill_pg_061.jpg" width="378" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">So slowly, slowly she got up,<br /></span>
<span class="i2">and so slowly she came to him,<br /></span>
<span class="i0">And all she said when she came there,<br /></span>
<span class="i2">young Man, I think you are a dying.<span class="pagenum"><a name="page_62" id="page_62">{62}</a></span><br /></span>
</div><div class="stanza">
<span class="i0">He turn’d his face unto her then:<br /></span>
<span class="i2">if you be <i>Barbara Allen</i>,<br /></span>
<span class="i0">My dear, said he, come pitty me,<br /></span>
<span class="i2">as on my Death-bed I am lying.<br /></span>
</div><div class="stanza">
<span class="i0">If on your Death-bed you be lying,<br /></span>
<span class="i2">what is that to <i>Barbara Allen</i>?<br /></span>
<span class="i0">I cannot keep you from Death,<br /></span>
<span class="i2">so farewell, said <i>Barbara Allen</i>.<br /></span>
</div><div class="stanza">
<span class="i0">He turn’d his face unto the Wall,<br /></span>
<span class="i2">and Death came creeping to him:<br /></span>
<span class="i0">Then adieu, adieu, and adieu to all,<br /></span>
<span class="i2">and adieu to <i>Barbara Allen</i>.<br /></span>
</div><div class="stanza">
<span class="i0">And as she was walking on a day,<br /></span>
<span class="i2">she heard the Bell a Ringing,<br /></span>
<span class="i0">And it did seem to ring to her,<br /></span>
<span class="i2">unworthy <i>Barbara Allen</i>.<br /></span>
</div><div class="stanza">
<span class="i0">She turn’d herself round about,<br /></span>
<span class="i2">and she spy’d the Corps a coming:<br /></span>
<span class="i0">Lay down, Lay down the Corps of Clay,<br /></span>
<span class="i2">that I may look upon him.<br /></span>
</div><div class="stanza">
<span class="i0">And all the while she looked on,<br /></span>
<span class="i2">so loudly she was laughing;<br /></span>
<span class="i0">While all her Friends cry’d amain,<br /></span>
<span class="i2">unworthy <i>Barbara Allen</i>.<br /></span>
<span class="pagenum"><a name="page_63" id="page_63">{63}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_063.jpg">
<img src="images/ill_pg_063.jpg" width="370" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">When he was dead &amp; laid in Grave,<br /></span>
<span class="i2">then Death came creeping to she.<br /></span>
<span class="i0">O Mother! Mother! make my Bed,<br /></span>
<span class="i2">for his Death hath quite undone me.<br /></span>
<span class="pagenum"><a name="page_64" id="page_64">{64}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_064.jpg">
<img src="images/ill_pg_064.jpg" width="522" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_65" id="page_65">{65}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">A hard hearted Creature that I was,<br /></span>
<span class="i2">to slight one that loved me so dearly;<br /></span>
<span class="i0">I wish I had been more kinder to him,<br /></span>
<span class="i2">the time of his Life, when he was near me.<br /></span>
</div><div class="stanza">
<span class="i0">So this Maid she then did dye,<br /></span>
<span class="i2">and desired to be buried by him,<br /></span>
<span class="i0">And repented herself before she dy’d<br /></span>
<span class="i2">that ever she did deny him.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_065.jpg">
<img src="images/ill_pg_065.jpg" width="159" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_66" id="page_66">{66}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_066.jpg">
<img src="images/ill_pg_066.jpg" width="181" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_67" id="page_67">{67}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_067.jpg">
<img src="images/ill_pg_067.jpg" width="279" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_68" id="page_68">{68}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_068.jpg">
<img src="images/ill_pg_068.jpg" width="173" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_69" id="page_69">{69}</a></span></p>

<h2><a name="PERIGOT_AND_CUDDYS_ROUNDELAY" id="PERIGOT_AND_CUDDYS_ROUNDELAY"></a><i>PERIGOT AND CUDDY’S ROUNDELAY.</i><br /><br />
<span class="subhd">BY EDM. SPENSER.</span></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_i.png"
width="60"
alt="I" /></span>T fell upon a holy-eve<br /></span>
<span class="ih">(Heigho, holy-day!),<br /></span>
<span class="ih">When holy fathers wont to shrive<br /></span>
<span class="i2">(Now ’ginneth this roundelay),<br /></span>
<span class="i0">Sitting upon a hill so high<br /></span>
<span class="i2">(Heigho, the high hill!)<br /></span>
<span class="i0">The while my flock did feed thereby,<br /></span>
<span class="i2">The while the shepherd’s self did spill.<br /></span>
</div><div class="stanza">
<span class="i0">I saw the bouncing Bellibone<br /></span>
<span class="i2">(Heigho, bonny-bell!)<br /></span>
<span class="i0">Tripping over the dale alone&mdash;<br /></span>
<span class="i2">She can trip it very well&mdash;<br /></span>
<span class="i0">Well decked in a frock of gray<br /></span>
<span class="i2">(Heigho, gray is great!)<br /></span>
<span class="i0">And in a kirtle of green say&mdash;<br /></span>
<span class="i2">The green is for maidens meet.<br /></span>
</div><div class="stanza">
<span class="i0">A chaplet on her head she wore<br /></span>
<span class="i2">(Heigho, the chaplet!);<br /></span>
<span class="i0">Of sweet violets therein was store&mdash;<br /></span>
<span class="i2">She’s sweeter than the violet.<br /></span>
<span class="pagenum"><a name="page_70" id="page_70">{70}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_070.jpg">
<img src="images/ill_pg_070.jpg" width="542" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_71" id="page_71">{71}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">My sheep did leave their wonted food<br /></span>
<span class="i2">(Heigho, silly sheep!)<br /></span>
<span class="i0">And gazed on her as they were wood&mdash;<br /></span>
<span class="i2">Wood as he that did them keep.<br /></span>
</div><div class="stanza">
<span class="i0">As the bonny lass passed by<br /></span>
<span class="i2">(Heigho, bonny lass!)<br /></span>
<span class="i0">She rolled at me with glancing eye<br /></span>
<span class="i2">As clear as the crystal glass.<br /></span>
<span class="i0">All as the sunny beam so bright<br /></span>
<span class="i2">(Heigho, the sunbeam!)<br /></span>
<span class="i0">Glanceth from Phœbus’ face forth-right,<br /></span>
<span class="i2">So love into my heart did stream.<br /></span>
</div><div class="stanza">
<span class="i0">Or as the thunder cleaves the clouds<br /></span>
<span class="i2">(Heigho, the thunder!)<br /></span>
<span class="i0">Wherein the lightsome leaven shrouds,<br /></span>
<span class="i2">So cleaves my soul asunder;<br /></span>
<span class="i0">Or as dame Cynthia’s silver ray<br /></span>
<span class="i2">(Heigho, the moonlight!)<br /></span>
<span class="i0">Upon the glistening wave doth play,<br /></span>
<span class="i2">Such play is a piteous plight.<br /></span>
</div><div class="stanza">
<span class="i0">The glance into my heart did glide<br /></span>
<span class="i2">(Heigho, the glide!),<br /></span>
<span class="i0">Therewith my soul was sharply gride.<br /></span>
<span class="i2">Such wounds some waxen wide;<br /></span>
<span class="i0">Hasting to wrench the arrow out<br /></span>
<span class="i2">(Heigho, Perigot!),<br /></span>
<span class="i0">I left the head in my heart-root:<br /></span>
<span class="i2">It was a desperate shot.<span class="pagenum"><a name="page_72" id="page_72">{72}</a></span><br /></span>
</div><div class="stanza">
<span class="i0">Then it rankleth aye more and more<br /></span>
<span class="i2">(Heigho, the arrow!),<br /></span>
<span class="i0">Nor can I find salve for my sore&mdash;<br /></span>
<span class="i2">Love is a cureless sorrow.<br /></span>
<span class="i0">And though my bale with death I bought<br /></span>
<span class="i2">(Heigho, heavy cheer!)<br /></span>
<span class="i0">Yet should this lass not from my thought,<br /></span>
<span class="i2">So you may buy gold too dear.<br /></span>
</div><div class="stanza">
<span class="i0">But whether in painful love I pine<br /></span>
<span class="i2">(Heigho, pinching pain!)<br /></span>
<span class="i0">Or thrive in wealth, she shall be mine.<br /></span>
<span class="i2">But if thou can her obtain,<br /></span>
<span class="i0">And if for graceless grief I die<br /></span>
<span class="i2">(Heigho, graceless grief!),<br /></span>
<span class="i0">Witness she slew me with her eye,<br /></span>
<span class="i2">Let thy folly be the preef (<i>sic</i>).<br /></span>
</div><div class="stanza">
<span class="i0">And you that saw it, simple sheep<br /></span>
<span class="i2">(Heigho, the fair flock!),<br /></span>
<span class="i0">For prief thereof my death shall weep<br /></span>
<span class="i2">And moan with many a mock.<br /></span>
<span class="i0">So learn’d I love on a holy-eve<br /></span>
<span class="i2">(Heigho, holy-day!)<br /></span>
<span class="i0">That ever since my heart did grieve.<br /></span>
<span class="i2">Now endeth our roundelay.<br /></span>
<span class="pagenum"><a name="page_73" id="page_73">{73}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_073.jpg">
<img src="images/ill_pg_073.jpg" width="280" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_74" id="page_74">{74}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_074.jpg">
<img src="images/ill_pg_074.jpg" width="128" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="SALLY_IN_OUR_ALLEY" id="SALLY_IN_OUR_ALLEY"></a><i>SALLY IN OUR ALLEY.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_o.png"
width="60"
alt="O" /></span>F all the girls that are so smart<br /></span>
<span class="ih">There’s none like pretty Sally:<br /></span>
<span class="i0">She is the darling of my heart,<br /></span>
<span class="i2">And she lives in our alley.<br /></span>
<span class="i0">There is no lady in the land<br /></span>
<span class="i2">Is half so sweet as Sally:<br /></span>
<span class="i0">She is the darling of my heart,<br /></span>
<span class="i2">And she lives in our alley.<br /></span>
</div><div class="stanza">
<span class="i0">Her father he makes cabbage-nets,<br /></span>
<span class="i2">And through the streets does cry ’em;<br /></span>
<span class="i0">Her mother she sells laces long<br /></span>
<span class="i2">To such as please to buy ’em;<br /></span>
<span class="pagenum"><a name="page_75" id="page_75">{75}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_075.jpg">
<img src="images/ill_pg_075.jpg" width="370" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_76" id="page_76">{76}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_076.jpg">
<img src="images/ill_pg_076.jpg" width="251" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">But sure such folks could ne’er beget<br /></span>
<span class="i2">So sweet a girl as Sally!<br /></span>
<span class="i0">She is the darling of my heart,<br /></span>
<span class="i2">And she lives in our alley.<br /></span>
</div><div class="stanza">
<span class="i0">When she is by, I leave my work,<br /></span>
<span class="i2">I love her so sincerely;<br /></span>
<span class="i0">My master comes like any Turk,<br /></span>
<span class="i2">And bangs me most severely;<span class="pagenum"><a name="page_77" id="page_77">{77}</a></span><br /></span>
</div><div class="stanza">
<span class="i0">But let him bang his bellyful,<br /></span>
<span class="i2">I’ll bear it all for Sally:<br /></span>
<span class="i0">She is the darling of my heart,<br /></span>
<span class="i2">And she lives in our alley.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_077.jpg">
<img src="images/ill_pg_077.jpg" width="269" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_78" id="page_78">{78}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_078.jpg">
<img src="images/ill_pg_078.jpg" width="384" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_79" id="page_79">{79}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_079.jpg">
<img src="images/ill_pg_079.jpg" width="375" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_80" id="page_80">{80}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Of all the days that’s in the week<br /></span>
<span class="i2">I dearly love but one day,<br /></span>
<span class="i0">And that’s the day that comes betwixt<br /></span>
<span class="i2">A Saturday and Monday;<br /></span>
<span class="i0">For then I’m drest all in my best<br /></span>
<span class="i2">To walk abroad with Sally:<br /></span>
<span class="i0">She is the darling of my heart,<br /></span>
<span class="i2">And she lives in our alley.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_080.jpg">
<img src="images/ill_pg_080.jpg" width="241" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_81" id="page_81">{81}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">My master carries me to church,<br /></span>
<span class="i2">And often am I blamed<br /></span>
<span class="i0">Because I leave him in the lurch<br /></span>
<span class="i2">As soon as text is named;<br /></span>
<span class="i0">I leave the church in sermon-time<br /></span>
<span class="i2">And slink away to Sally:<br /></span>
<span class="i0">She is the darling of my heart,<br /></span>
<span class="i2">And she lives in our alley.<br /></span>
</div><div class="stanza">
<span class="i0">When Christmas comes about again,<br /></span>
<span class="i2">Oh, then I shall have money;<br /></span>
<span class="i0">I’ll hoard it up, and box it all,<br /></span>
<span class="i2">I’ll give it to my honey:<br /></span>
<span class="i0">I would it were ten thousand pound,<br /></span>
<span class="i2">I’d give it all to Sally:<br /></span>
<span class="i0">She is the darling of my heart,<br /></span>
<span class="i2">And she lives in our alley.<br /></span>
<span class="pagenum"><a name="page_82" id="page_82">{82}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_082.jpg">
<img src="images/ill_pg_082.jpg" width="385" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">My master and the neighbors all<br /></span>
<span class="i2">Make game of me and Sally,<br /></span>
<span class="i0">And, but for her, I’d better be<br /></span>
<span class="i2">A slave and row a galley;<br /></span>
<span class="pagenum"><a name="page_83" id="page_83">{83}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_083.jpg">
<img src="images/ill_pg_083.jpg" width="601" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_84" id="page_84">{84}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">But when my seven long years are out,<br /></span>
<span class="i2">Oh, then I’ll marry Sally!<br /></span>
<span class="i0">And then how happily we’ll live,<br /></span>
<span class="i2">But <i>not</i> in our alley.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_084.jpg">
<img src="images/ill_pg_084.jpg" width="282" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_85" id="page_85">{85}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_085.jpg">
<img src="images/ill_pg_085.jpg" width="283" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="EARLY_ONE_MORNING" id="EARLY_ONE_MORNING"></a>“<i>EARLY ONE MORNING.</i>”</h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_e.png"
width="60"
alt="E" /></span>ARLY one morning, just as the sun was rising,<br /></span>
<span class="ih">I heard a maid sing in the valley below:<br /></span>
<span class="ih">“Oh, don’t deceive me! oh, never leave me!<br /></span>
<span class="i2">How could you use a poor maiden so?<br /></span>
</div><div class="stanza">
<span class="i0">“Oh, gay is the garland and fresh are the roses<br /></span>
<span class="i2">I’ve culled from the garden to bind up my brow.<br /></span>
<span class="i0">Oh, don’t deceive me! oh, do not leave me!<br /></span>
<span class="i2">How could you use a poor maiden so?<br /></span>
</div><div class="stanza">
<span class="i0">“Remember the vows you made to your Mary;<br /></span>
<span class="i2">Remember the bow’r where you vowed to be true.<br /></span>
<span class="i0">Oh, don’t deceive me! oh, do not leave me!<br /></span>
<span class="i2">How could you use a poor maiden so?”<br /></span>
</div><div class="stanza">
<span class="i0">Thus sang the poor maiden, her sorrows bewailing;<br /></span>
<span class="i2">Thus sang the poor maid in the valley below:<br /></span>
<span class="i0">“Oh, don’t deceive me! oh, never leave me!<br /></span>
<span class="i2">How could you use a poor maiden so?”<br /></span>
<span class="pagenum"><a name="page_87" id="page_87">{87}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_087.jpg">
<img src="images/ill_pg_087.jpg" width="380" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_88" id="page_88">{88}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_088.jpg">
<img src="images/ill_pg_088.jpg" width="234" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_89" id="page_89">{89}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_089.jpg">
<img src="images/ill_pg_089.jpg" width="271" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_90" id="page_90">{90}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_090.jpg">
<img src="images/ill_pg_090.jpg" width="231" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_91" id="page_91">{91}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_091.jpg">
<img src="images/ill_pg_091.jpg" width="348" alt="[Image unavailable.]" /></a>
</div>

<h2><a name="KITTY_OF_COLERAINE" id="KITTY_OF_COLERAINE"></a><i>KITTY OF COLERAINE.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_a.png"
width="60"
alt="A" /></span>S beautiful Kitty one morning was tripping<br /></span>
<span class="ih">With a pitcher of milk from the fair of Coleraine,<br /></span>
<span class="i0">When she saw me she stumbled, the pitcher it tumbled,<br /></span>
<span class="i2">And all the sweet buttermilk water’d the plain.<br /></span>
</div><div class="stanza">
<span class="i0">Oh, what shall I do now? ’Twas looking at you, now.<br /></span>
<span class="i2">Sure, sure, such a pitcher I’ll ne’er meet again.<br /></span>
<span class="i0">’Twas the pride of my dairy. Oh, Barney M’Leary,<br /></span>
<span class="i2">You’re sent as a plague to the girls of Coleraine!<br /></span>
<span class="pagenum"><a name="page_92" id="page_92">{92}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_092.jpg">
<img src="images/ill_pg_092.jpg" width="574" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_93" id="page_93">{93}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_093.jpg">
<img src="images/ill_pg_093.jpg" width="561" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_94" id="page_94">{94}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_094.jpg">
<img src="images/ill_pg_094.jpg" width="592" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_95" id="page_95">{95}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_095.jpg">
<img src="images/ill_pg_095.jpg" width="584" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_96" id="page_96">{96}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">I sat down beside her, and gently did chide her,<br /></span>
<span class="i2">That such a misfortune should give her such pain.<br /></span>
<span class="i0">A kiss then I gave her. Before I did leave her,<br /></span>
<span class="i2">She vow’d for such pleasure she’d break it again.<br /></span>
</div><div class="stanza">
<span class="i0">’Twas haymaking season. I can’t tell the reason&mdash;<br /></span>
<span class="i2">Misfortunes will never come single&mdash;that’s plain&mdash;<br /></span>
<span class="i0">For very soon after poor Kitty’s disaster,<br /></span>
<span class="i2">The devil a pitcher was whole in Coleraine.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_096.jpg">
<img src="images/ill_pg_096.jpg" width="374" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_97" id="page_97">{97}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_097.jpg">
<img src="images/ill_pg_097.jpg" width="287" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_98" id="page_98">{98}</a></span></p>

<h2><a name="OLD_KING_COLE" id="OLD_KING_COLE"></a><i>OLD KING COLE.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_o.png"
width="60"
alt="O" /></span>LD King Cole was a merry old soul,<br /></span>
<span class="ih">And a merry old soul was he;<br /></span>
<span class="ih">And he call’d for his pipe,<br /></span>
<span class="i4">And he call’d for his bowl,<br /></span>
<span class="i4">And he call’d for his fiddlers three.<br /></span>
<span class="i0">Then twedle, twedle, twedle, twedle, twedle went the fiddlers;<br /></span>
<span class="i0">Twedle, twedle, twedle, twedle, twedle, twedle twee.<br /></span>
<span class="i4">There’s none so rare as can compare<br /></span>
<span class="i4">To King Cole and his fiddlers three.<br /></span>
<span class="pagenum"><a name="page_99" id="page_99">{99}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_099.jpg">
<img src="images/ill_pg_099.jpg" width="365" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_100" id="page_100">{100}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_100.jpg">
<img src="images/ill_pg_100.jpg" width="264" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_101" id="page_101">{101}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_101.jpg">
<img src="images/ill_pg_101.jpg" width="282" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_102" id="page_102">{102}</a></span></p>

<h2><a name="HARVEST-HOME" id="HARVEST-HOME"></a><i>HARVEST-HOME.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_c.png"
width="60"
alt="C" /></span>OME, Roger and Nell;<br /></span>
<span class="ih">Come, Simkin and Bell;<br /></span>
<span class="ih">Each lad with his lass hither come,<br /></span>
<span class="i4">With singing and dancing,<br /></span>
<span class="i3">In pleasure advancing<br /></span>
<span class="i4">To celebrate harvest-home.<br /></span>
<span class="i4">’Tis Ceres bids play<br /></span>
<span class="i4">And keep holiday<br /></span>
<span class="i4">To celebrate harvest-home.<br /></span>
</div><div class="stanza">
<span class="i0">Our labor is o’er, and our barns in full store<br /></span>
<span class="i2">Now swell with rich gifts of the land.<br /></span>
<span class="i0">Let each man then take, for the prong and the rake,<br /></span>
<span class="i2">His can and his lass in his hand.<br /></span>
<span class="i4">’Tis Ceres bids play<br /></span>
<span class="i4">And keep holiday<br /></span>
<span class="i4">To celebrate harvest-home.<br /></span>
</div><div class="stanza">
<span class="i0">No courtiers can be so happy as we<br /></span>
<span class="i2">In innocent pastime and mirth,<br /></span>
<span class="pagenum"><a name="page_103" id="page_103">{103}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_103.jpg">
<img src="images/ill_pg_103.jpg" width="547" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_104" id="page_104">{104}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_104.jpg">
<img src="images/ill_pg_104.jpg" width="359" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">While thus we carouse with our sweetheart or spouse,<br /></span>
<span class="i2">And rejoice o’er the fruits of the earth.<br /></span>
<span class="i4">’Tis Ceres bids play<br /></span>
<span class="i4">And keep holiday<br /></span>
<span class="i4">To celebrate harvest-home.<br /></span>
<span class="pagenum"><a name="page_105" id="page_105">{105}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_105.jpg">
<img src="images/ill_pg_105.jpg" width="375" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_106" id="page_106">{106}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_106.jpg">
<img src="images/ill_pg_106.jpg" width="249" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_107" id="page_107">{107}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_107.jpg">
<img src="images/ill_pg_107.jpg" width="290" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_108" id="page_108">{108}</a></span></p>

<h2><a name="TWAS_DOWN_IN_CUPIDS_GARDEN" id="TWAS_DOWN_IN_CUPIDS_GARDEN"></a>“<i>’TWAS DOWN IN CUPID’S GARDEN.</i>”</h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_tw.png"
width="60"
alt="’T" /></span>WAS down in Cupid’s garden<br /></span>
<span class="ih">For pleasure I did go,<br /></span>
<span class="ih">To see the fairest flowers<br /></span>
<span class="i2">That in that garden grow.<br /></span>
<span class="i0">The first it was the jessamine,<br /></span>
<span class="i2">The lily, pink, and rose,<br /></span>
<span class="i0">And surely they’re the fairest flow’rs<br /></span>
<span class="i2">That in that garden grows!<br /></span>
</div><div class="stanza">
<span class="i0">I’d not walked in that garden<br /></span>
<span class="i2">The part of half an hour,<br /></span>
<span class="i0">When there I saw two pretty maids<br /></span>
<span class="i2">Sitting under a shady bower.<br /></span>
<span class="i0">The first was lovely Nancy,<br /></span>
<span class="i2">So beautiful and fair;<br /></span>
<span class="i0">The other was a virgin<br /></span>
<span class="i2">Who did the laurel wear.<br /></span>
</div><div class="stanza">
<span class="i0">I boldly stepped up to her,<br /></span>
<span class="i2">And unto her did say,<br /></span>
<span class="i0">Are you engaged to any young man?<br /></span>
<span class="i2">Do tell to me, I pray!<br /></span>
<span class="pagenum"><a name="page_109" id="page_109">{109}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_109.jpg">
<img src="images/ill_pg_109.jpg" width="502" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_110" id="page_110">{110}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">I’m not engaged to any young man,<br /></span>
<span class="i2">I solemnly do swear;<br /></span>
<span class="i0">I mean to live a virgin,<br /></span>
<span class="i2">And still the laurel wear.<br /></span>
</div><div class="stanza">
<span class="i0">Then hand in hand together<br /></span>
<span class="i2">This lovely couple went;<br /></span>
<span class="i0">Resolved was the sailor boy<br /></span>
<span class="i2">To know her full intent&mdash;<br /></span>
<span class="i0">To know if he would slighted be<br /></span>
<span class="i2">When to her the truth he told.<br /></span>
<span class="i0">Oh no! oh no! oh no! she cried;<br /></span>
<span class="i2">I love a sailor bold.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_110.jpg">
<img src="images/ill_pg_110.jpg" width="184" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_111" id="page_111">{111}</a></span></p>

<h2>
<a href="images/ill_pg_111.jpg">
<img src="images/ill_pg_111.jpg" width="274" alt="[Image unavailable.]" /></a>
</h2>

<p><span class="pagenum"><a name="page_112" id="page_112">{112}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_112.jpg">
<img src="images/ill_pg_112.jpg" width="103" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_113" id="page_113">{113}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_113.jpg">
<img src="images/ill_pg_113.jpg" width="292" alt="[Image unavailable.]" /></a>
</div>

<h2><i>PHILLADA.</i></h2>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="ig">
<span class="letra"><img src="images/ill_o.png"
width="60"
alt="O" /></span>H, what a pain is love!<br /></span>
<span class="ih">How shall I bear it?<br /></span>
<span class="ih">She will unconstant prove;<br /></span>
<span class="i2">I greatly fear it.<span class="pagenum"><a name="page_114" id="page_114">{114}</a></span><br /></span>
<span class="i0">She so torments my mind<br /></span>
<span class="i2">That my strength faileth,<br /></span>
<span class="i0">And wavers with the wind<br /></span>
<span class="i2">As a ship saileth.<br /></span>
<span class="i0">Please her the best I may,<br /></span>
<span class="i0">She loves still to gainsay:<br /></span>
<span class="i0">Alack and well-a-day!<br /></span>
<span class="i2">Phillada flouts me.<br /></span>
</div><div class="stanza">
<span class="i0">All the fair yesterday<br /></span>
<span class="i2">She did pass by me;<br /></span>
<span class="i0">She looked another way<br /></span>
<span class="i2">And would not spy me.<br /></span>
<span class="i0">I woo’d her for to dine,<br /></span>
<span class="i2">But could not get her;<br /></span>
<span class="i0">Will had her to the wine&mdash;<br /></span>
<span class="i2">He might intreat her.<br /></span>
<span class="i0">With Daniel she did dance;<br /></span>
<span class="i0">On me she looked askance:<br /></span>
<span class="i0">Oh, thrice unhappy chance!<br /></span>
<span class="i2">Phillada flouts me.<br /></span>
<span class="pagenum"><a name="page_115" id="page_115">{115}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_115.jpg">
<img src="images/ill_pg_115.jpg" width="574" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_116" id="page_116">{116}</a></span></p>

<div class="figcenter">
<a href="images/ill_pg_116.jpg">
<img src="images/ill_pg_116.jpg" width="346" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Fair maid! be not so coy;<br /></span>
<span class="i2">Do not disdain me!<br /></span>
<span class="i0">I am my mother’s joy:<br /></span>
<span class="i2">Sweet! entertain me!<br /></span>
<span class="i0">She’ll give me when she dies<br /></span>
<span class="i2">All that is fitting:<br /></span>
<span class="i0">Her poultry and her bees,<br /></span>
<span class="i2">And her goose sitting,<span class="pagenum"><a name="page_117" id="page_117">{117}</a></span><br /></span>
<span class="i0">A pair of mattress beds,<br /></span>
<span class="i0">And a bag full of shreds:<br /></span>
<span class="i0">And yet, for all this guedes,<br /></span>
<span class="i2">Phillada flouts me.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_117.jpg">
<img src="images/ill_pg_117.jpg" width="368" alt="[Image unavailable.]" /></a>
</div>

<div class="figcenter">
<a href="images/ill_pg_118.jpg">
<img src="images/ill_pg_118.jpg" width="312" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">She hath a clout of mine,<br /></span>
<span class="i2">Wrought with blue coventry,<br /></span>
<span class="i0">Which she keeps for a sign<br /></span>
<span class="i2">Of my fidelity;<span class="pagenum"><a name="page_118" id="page_118">{118}</a></span><br /></span>
<span class="i0">But, ’faith, if she flinch,<br /></span>
<span class="i2">She shall not wear it;<br /></span>
<span class="i0">To Tib, my t’other wench,<br /></span>
<span class="i2">I mean to bear it.<br /></span>
<span class="i0">And yet it grieves my heart<br /></span>
<span class="i0">So soon from her to part:<br /></span>
<span class="i0">Death strike me with his dart!<br /></span>
<span class="i2">Phillada flouts me.<br /></span>
<span class="pagenum"><a name="page_119" id="page_119">{119}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_119.jpg">
<img src="images/ill_pg_119.jpg" width="302" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Thou shalt eat crudded cream<br /></span>
<span class="i2">All the year lasting,<br /></span>
<span class="i0">And drink the crystal stream<br /></span>
<span class="i2">Pleasant in tasting,<br /></span>
<span class="pagenum"><a name="page_120" id="page_120">{120}</a></span></div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_120.jpg">
<img src="images/ill_pg_120.jpg" width="363" alt="[Image unavailable.]" /></a>
</div>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">Whig and whey whilst thou lust,<br /></span>
<span class="i2">And ramble-berries,<br /></span>
<span class="i0">Pie-lid and pastry crust,<br /></span>
<span class="i2">Pears, plums, and cherries;<br /></span>
<span class="i0">Thy raiment shall be thin,<br /></span>
<span class="i0">Made of a weevil’s skin&mdash;<br /></span>
<span class="i0">Yet all’s not worth a pin:<br /></span>
<span class="i2">Phillada flouts me.<span class="pagenum"><a name="page_121" id="page_121">{121}</a></span><br /></span>
</div><div class="stanza">
<span class="i0">Fair maiden! have a care,<br /></span>
<span class="i2">And in time take me;<br /></span>
<span class="i0">I can have those as fair,<br /></span>
<span class="i2">If you forsake me:<br /></span>
<span class="i0">For Doll the dairy-maid<br /></span>
<span class="i2">Laughed at me lately,<br /></span>
<span class="i0">And wanton Winifred<br /></span>
<span class="i2">Favors me greatly.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_121.jpg">
<img src="images/ill_pg_121.jpg" width="248" alt="[Image unavailable.]" /></a>
</div>

<p><span class="pagenum"><a name="page_122" id="page_122">{122}</a></span></p>

<div class="poetry">
<div class="poem"><div class="stanza">
<span class="i0">One throws milk on my clothes;<br /></span>
<span class="i0">T’other plays with my nose:<br /></span>
<span class="i0">What wanting signs are those!<br /></span>
<span class="i2">Phillada flouts me.<br /></span>
</div><div class="stanza">
<span class="i0">I cannot work nor sleep<br /></span>
<span class="i2">At all in season,<br /></span>
<span class="i0">Love wounds my heart so deep,<br /></span>
<span class="i2">Without all reason.<br /></span>
<span class="i0">I ’gin to pine away<br /></span>
<span class="i2">In my love’s shadow,<br /></span>
<span class="i0">Like as a fat beast may<br /></span>
<span class="i2">Penned in a meadow.<br /></span>
<span class="i0">I shall be dead, I fear,<br /></span>
<span class="i0">Within this thousand year:<br /></span>
<span class="i0">And all for that my dear<br /></span>
<span class="i2">Phillada flouts me.<br /></span>
</div></div>
</div>

<div class="figcenter">
<a href="images/ill_pg_122.jpg">
<img src="images/ill_pg_122.jpg" width="176" alt="[Image unavailable.]" /></a>
</div>

<hr class="full" />
<div>*** END OF THE PROJECT GUTENBERG EBOOK 67167 ***</div>
</body>
</html>