forked from scottyrdc/GenCollectionInterface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChildren's StoriesCategory.html
1543 lines (1508 loc) · 216 KB
/
Children's StoriesCategory.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>gen Collection Interface</title>
<link rel="stylesheet" href="css/themes1.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/colourModStyle.css" type="text/css" media="screen" />
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/scriptaculous.js"></script>
<script type="text/javascript" src="js/prototip.js"></script>
<link rel="stylesheet" type="text/css" href="css/prototip.css" />
<script type="text/javascript" src="js/effects.js"></script>
</head>
<style>
/****************************************/
.booktitle { line-height: 13px; font-size: 11px; }
a{
outline: none;
}
a:active{
outline: none;
}
#sideBar{
text-align:left;
}
#sideBar h2{
color:#FFFFFF;
font-size:110%;
font-family:arial;
margin:10px 10px 10px 10px;
font-weight:bold !important;
}
#sideBar h2 span{
font-size:125%;
font-weight:normal !important;
}
#sideBar ul{
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}
#sideBar li{
margin:0px 10px 3px 10px;
padding:2px;
list-style-type:none;
display:block;
background-color:#FF5C3E;
width:177px;
color:#FFFFFF;
}
#sideBar li a{
width:100%;
}
#sideBar li a:link,
#sideBar li a:visited{
color:#FFFFFF;
font-family:verdana;
font-size:100%;
text-decoration:none;
display:block;
margin:0px 0px 0px 0px;
padding:0px;
width:100%;
}
#sideBar li a:hover{
color:#FFFFFF;
text-decoration:underline;
}
#sideBar{
position: absolute;
width: auto;
height: auto;
top: 140px;
right:0px;
background-color: #FF5C3E;
}
#sideBarTab{
float:left;
height:137px;
width:28px;
}
#sideBarTab img{
border:0px solid #FFFFFF;
}
#sideBarContents{
float:left;
overflow:hidden !important;
width:200px;
height:300px;
}
#sideBarContentsInner{
width:200px;
}
</style>
<body>
<div id="page">
<div id="mainContent">
<div class="topTear"></div>
<div id="content" class="widecolumn" style="min-height: 420px;">
<div class="post" id="post-450" style="margin-right: 0px;">
<h2>Children's Stories</h2>
<div class="entrytext">
<div class="collection-container" style="margin-top: 35px;">
<div class="thumbnail"><a class="category" id="snoweduporsports00cast" href="djvu/snoweduporsports00cast.djvu"><img class="bookcover" src="covers/snoweduporsports00cast.jpg"></a><br />
<span class="booktitle">... Snowed up </span>
</span></div>
<div class="thumbnail"><a class="category" id="butterflychase00stah" href="djvu/butterflychase00stah.djvu"><img class="bookcover" src="covers/butterflychase00stah.jpg"></a><br />
<span class="booktitle">A butterfly chase </span>
</span></div>
<div class="thumbnail"><a class="category" id="cupsweetsthatcan00sempiala" href="djvu/cupsweetsthatcan00sempiala.djvu"><img class="bookcover" src="covers/cupsweetsthatcan00sempiala.jpg"></a><br />
<span class="booktitle">A cup of sweets, that can never </span>
</span></div>
<div class="thumbnail"><a class="category" id="cupofsweetstha00sempiala" href="djvu/cupofsweetstha00sempiala.djvu"><img class="bookcover" src="covers/cupofsweetstha00sempiala.jpg"></a><br />
<span class="booktitle">A cup of sweets, that can never </span>
</span></div>
<div class="thumbnail"><a class="category" id="dayspleasureorha00geikiala" href="djvu/dayspleasureorha00geikiala.djvu"><img class="bookcover" src="covers/dayspleasureorha00geikiala.jpg"></a><br />
<span class="booktitle">A day's pleasure; or, The half-holiday adventures </span>
</span></div>
<div class="thumbnail"><a class="category" id="huntonsnowshoes00elli" href="djvu/huntonsnowshoes00elli.djvu"><img class="bookcover" src="covers/huntonsnowshoes00elli.jpg"></a><br />
<span class="booktitle">A hunt on snow shoes </span>
</span></div>
<div class="thumbnail"><a class="category" id="picturebookofmer00londiala" href="djvu/picturebookofmer00londiala.djvu"><img class="bookcover" src="covers/picturebookofmer00londiala.jpg"></a><br />
<span class="booktitle">A picture-book of merry tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="teachersoffering00bostiala" href="djvu/teachersoffering00bostiala.djvu"><img class="bookcover" src="covers/teachersoffering00bostiala.jpg"></a><br />
<span class="booktitle">A teacher's offering </span>
</span></div>
<div class="thumbnail"><a class="category" id="treasuryofpleasu00cundiala" href="djvu/treasuryofpleasu00cundiala.djvu"><img class="bookcover" src="covers/treasuryofpleasu00cundiala.jpg"></a><br />
<span class="booktitle">A treasury of pleasure books for young </span>
</span></div>
<div class="thumbnail"><a class="category" id="treasurypleasure00cundiala" href="djvu/treasurypleasure00cundiala.djvu"><img class="bookcover" src="covers/treasurypleasure00cundiala.jpg"></a><br />
<span class="booktitle">A Treasury of pleasure books for young </span>
</span></div>
<div class="thumbnail"><a class="category" id="weekatglenville00lloyiala" href="djvu/weekatglenville00lloyiala.djvu"><img class="bookcover" src="covers/weekatglenville00lloyiala.jpg"></a><br />
<span class="booktitle">A week at Glenville </span>
</span></div>
<div class="thumbnail"><a class="category" id="weekofinstructio00londiala" href="djvu/weekofinstructio00londiala.djvu"><img class="bookcover" src="covers/weekofinstructio00londiala.jpg"></a><br />
<span class="booktitle">A Week of instruction and amusement, or, </span>
</span></div>
<div class="thumbnail"><a class="category" id="alicebeatrice00graniala" href="djvu/alicebeatrice00graniala.djvu"><img class="bookcover" src="covers/alicebeatrice00graniala.jpg"></a><br />
<span class="booktitle">Alice and Beatrice </span>
</span></div>
<div class="thumbnail"><a class="category" id="andyacrobatorout00hark" href="djvu/andyacrobatorout00hark.djvu"><img class="bookcover" src="covers/andyacrobatorout00hark.jpg"></a><br />
<span class="booktitle">Andy the acrobat </span>
</span></div>
<div class="thumbnail"><a class="category" id="anyhowstoriesmor00clifiala" href="djvu/anyhowstoriesmor00clifiala.djvu"><img class="bookcover" src="covers/anyhowstoriesmor00clifiala.jpg"></a><br />
<span class="booktitle">Anyhow stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="archiesolddesk00doud" href="djvu/archiesolddesk00doud.djvu"><img class="bookcover" src="covers/archiesolddesk00doud.jpg"></a><br />
<span class="booktitle">Archie's old desk </span>
</span></div>
<div class="thumbnail"><a class="category" id="atschoolathomeor00fmisiala" href="djvu/atschoolathomeor00fmisiala.djvu"><img class="bookcover" src="covers/atschoolathomeor00fmisiala.jpg"></a><br />
<span class="booktitle">At school & at home, or, scenes </span>
</span></div>
<div class="thumbnail"><a class="category" id="auntannslessonbo00frieiala" href="djvu/auntannslessonbo00frieiala.djvu"><img class="bookcover" src="covers/auntannslessonbo00frieiala.jpg"></a><br />
<span class="booktitle">Aunt Ann's lesson-book </span>
</span></div>
<div class="thumbnail"><a class="category" id="auntjosscrapbag00alcoiala" href="djvu/auntjosscrapbag00alcoiala.djvu"><img class="bookcover" src="covers/auntjosscrapbag00alcoiala.jpg"></a><br />
<span class="booktitle">Aunt Jo's scrap-bag ... </span>
</span></div>
<div class="thumbnail"><a class="category" id="auntmarysstories00hughiala" href="djvu/auntmarysstories00hughiala.djvu"><img class="bookcover" src="covers/auntmarysstories00hughiala.jpg"></a><br />
<span class="booktitle">Aunt Mary's stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="auntmarystalesen00hughiala" href="djvu/auntmarystalesen00hughiala.djvu"><img class="bookcover" src="covers/auntmarystalesen00hughiala.jpg"></a><br />
<span class="booktitle">Aunt Mary's tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="auntmarystalesfo00hughiala" href="djvu/auntmarystalesfo00hughiala.djvu"><img class="bookcover" src="covers/auntmarystalesfo00hughiala.jpg"></a><br />
<span class="booktitle">Aunt Mary's tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="auntmarystalesli00hughiala" href="djvu/auntmarystalesli00hughiala.djvu"><img class="bookcover" src="covers/auntmarystalesli00hughiala.jpg"></a><br />
<span class="booktitle">Aunt Mary's tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="auntmarystalesgi00hughiala" href="djvu/auntmarystalesgi00hughiala.djvu"><img class="bookcover" src="covers/auntmarystalesgi00hughiala.jpg"></a><br />
<span class="booktitle">Aunt Mary's tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="babynightcaps00fanniala" href="djvu/babynightcaps00fanniala.djvu"><img class="bookcover" src="covers/babynightcaps00fanniala.jpg"></a><br />
<span class="booktitle">Baby nightcaps </span>
</span></div>
<div class="thumbnail"><a class="category" id="bettywalesoncamp00dunt" href="djvu/bettywalesoncamp00dunt.djvu"><img class="bookcover" src="covers/bettywalesoncamp00dunt.jpg"></a><br />
<span class="booktitle">Betty Wales on the campus </span>
</span></div>
<div class="thumbnail"><a class="category" id="blueviolet00clariala" href="djvu/blueviolet00clariala.djvu"><img class="bookcover" src="covers/blueviolet00clariala.jpg"></a><br />
<span class="booktitle">Blue violet </span>
</span></div>
<div class="thumbnail"><a class="category" id="brunoorlessonsof00abboiala" href="djvu/brunoorlessonsof00abboiala.djvu"><img class="bookcover" src="covers/brunoorlessonsof00abboiala.jpg"></a><br />
<span class="booktitle">Bruno; or, Lessons of fidelity, patience, and </span>
</span></div>
<div class="thumbnail"><a class="category" id="childsnewstorybo00newhiala" href="djvu/childsnewstorybo00newhiala.djvu"><img class="bookcover" src="covers/childsnewstorybo00newhiala.jpg"></a><br />
<span class="booktitle">Child's new story book, or, Tales and </span>
</span></div>
<div class="thumbnail"><a class="category" id="childpicturebook00conciala" href="djvu/childpicturebook00conciala.djvu"><img class="bookcover" src="covers/childpicturebook00conciala.jpg"></a><br />
<span class="booktitle">Child's picture book </span>
</span></div>
<div class="thumbnail"><a class="category" id="childlandpicture00pletiala" href="djvu/childlandpicture00pletiala.djvu"><img class="bookcover" src="covers/childlandpicture00pletiala.jpg"></a><br />
<span class="booktitle">Child-land </span>
</span></div>
<div class="thumbnail"><a class="category" id="chitchatstoriesf00newyiala" href="djvu/chitchatstoriesf00newyiala.djvu"><img class="bookcover" src="covers/chitchatstoriesf00newyiala.jpg"></a><br />
<span class="booktitle">Chit-chat stories for little folks </span>
</span></div>
<div class="thumbnail"><a class="category" id="choicelibraryfor00edgeiala" href="djvu/choicelibraryfor00edgeiala.djvu"><img class="bookcover" src="covers/choicelibraryfor00edgeiala.jpg"></a><br />
<span class="booktitle">Choice library for young people </span>
</span></div>
<div class="thumbnail"><a class="category" id="choicetalesforim00someiala" href="djvu/choicetalesforim00someiala.djvu"><img class="bookcover" src="covers/choicetalesforim00someiala.jpg"></a><br />
<span class="booktitle">Choice tales, for the improvement of youth </span>
</span></div>
<div class="thumbnail"><a class="category" id="christianparents00caryiala" href="djvu/christianparents00caryiala.djvu"><img class="bookcover" src="covers/christianparents00caryiala.jpg"></a><br />
<span class="booktitle">Christian parent's assistant, or, Tales, for the </span>
</span></div>
<div class="thumbnail"><a class="category" id="clusterofstories00philiala" href="djvu/clusterofstories00philiala.djvu"><img class="bookcover" src="covers/clusterofstories00philiala.jpg"></a><br />
<span class="booktitle">Cluster of stories for brother and sister </span>
</span></div>
<div class="thumbnail"><a class="category" id="cottagescenesbei00oaltiala" href="djvu/cottagescenesbei00oaltiala.djvu"><img class="bookcover" src="covers/cottagescenesbei00oaltiala.jpg"></a><br />
<span class="booktitle">Cottage scenes </span>
</span></div>
<div class="thumbnail"><a class="category" id="cousindeborahsst00guer" href="djvu/cousindeborahsst00guer.djvu"><img class="bookcover" src="covers/cousindeborahsst00guer.jpg"></a><br />
<span class="booktitle">Cousin Deborah's story, or, The great plague </span>
</span></div>
<div class="thumbnail"><a class="category" id="daisyland00glasiala" href="djvu/daisyland00glasiala.djvu"><img class="bookcover" src="covers/daisyland00glasiala.jpg"></a><br />
<span class="booktitle">Daisy Land </span>
</span></div>
<div class="thumbnail"><a class="category" id="damepartletsfarm00londiala" href="djvu/damepartletsfarm00londiala.djvu"><img class="bookcover" src="covers/damepartletsfarm00londiala.jpg"></a><br />
<span class="booktitle">Dame Partlet's farm </span>
</span></div>
<div class="thumbnail"><a class="category" id="dannyagainfurthe00barc" href="djvu/dannyagainfurthe00barc.djvu"><img class="bookcover" src="covers/dannyagainfurthe00barc.jpg"></a><br />
<span class="booktitle">Danny again; further adventures of "Danny the </span>
</span></div>
<div class="thumbnail"><a class="category" id="deepdowntaleofco00ball" href="djvu/deepdowntaleofco00ball.djvu"><img class="bookcover" src="covers/deepdowntaleofco00ball.jpg"></a><br />
<span class="booktitle">Deep down; a tale of the Cornish </span>
</span></div>
<div class="thumbnail"><a class="category" id="dickboldheroorta00good" href="djvu/dickboldheroorta00good.djvu"><img class="bookcover" src="covers/dickboldheroorta00good.jpg"></a><br />
<span class="booktitle">Dick Boldhero </span>
</span></div>
<div class="thumbnail"><a class="category" id="dickcheveleyhisa00king" href="djvu/dickcheveleyhisa00king.djvu"><img class="bookcover" src="covers/dickcheveleyhisa00king.jpg"></a><br />
<span class="booktitle">Dick Cheveley </span>
</span></div>
<div class="thumbnail"><a class="category" id="doctordick00londiala" href="djvu/doctordick00londiala.djvu"><img class="bookcover" src="covers/doctordick00londiala.jpg"></a><br />
<span class="booktitle">Doctor Dick </span>
</span></div>
<div class="thumbnail"><a class="category" id="dodgingnorthseam00kayr" href="djvu/dodgingnorthseam00kayr.djvu"><img class="bookcover" src="covers/dodgingnorthseam00kayr.jpg"></a><br />
<span class="booktitle">Dodging the North sea mines </span>
</span></div>
<div class="thumbnail"><a class="category" id="doodlessunshineb00dowd" href="djvu/doodlessunshineb00dowd.djvu"><img class="bookcover" src="covers/doodlessunshineb00dowd.jpg"></a><br />
<span class="booktitle">Doodles </span>
</span></div>
<div class="thumbnail"><a class="category" id="effieherstrangea00crofiala" href="djvu/effieherstrangea00crofiala.djvu"><img class="bookcover" src="covers/effieherstrangea00crofiala.jpg"></a><br />
<span class="booktitle">Effie and her strange acquaintances </span>
</span></div>
<div class="thumbnail"><a class="category" id="eightstoriesfori00portiala" href="djvu/eightstoriesfori00portiala.djvu"><img class="bookcover" src="covers/eightstoriesfori00portiala.jpg"></a><br />
<span class="booktitle">Eight stories for Isabel </span>
</span></div>
<div class="thumbnail"><a class="category" id="elmshomestead00john" href="djvu/elmshomestead00john.djvu"><img class="bookcover" src="covers/elmshomestead00john.jpg"></a><br />
<span class="booktitle">Elms homestead </span>
</span></div>
<div class="thumbnail"><a class="category" id="elsieswomanhoods00finl" href="djvu/elsieswomanhoods00finl.djvu"><img class="bookcover" src="covers/elsieswomanhoods00finl.jpg"></a><br />
<span class="booktitle">Elsie's womanhood </span>
</span></div>
<div class="thumbnail"><a class="category" id="emmaorthreemisfo00abboiala" href="djvu/emmaorthreemisfo00abboiala.djvu"><img class="bookcover" src="covers/emmaorthreemisfo00abboiala.jpg"></a><br />
<span class="booktitle">Emma; or, The three misfortunes of a </span>
</span></div>
<div class="thumbnail"><a class="category" id="entertainingmemo00londiala" href="djvu/entertainingmemo00londiala.djvu"><img class="bookcover" src="covers/entertainingmemo00londiala.jpg"></a><br />
<span class="booktitle">Entertaining memoirs of little personages, or, Moral </span>
</span></div>
<div class="thumbnail"><a class="category" id="ethelsstoryillus00phil" href="djvu/ethelsstoryillus00phil.djvu"><img class="bookcover" src="covers/ethelsstoryillus00phil.jpg"></a><br />
<span class="booktitle">Ethel's story </span>
</span></div>
<div class="thumbnail"><a class="category" id="faggotsforfiresi00goodiala" href="djvu/faggotsforfiresi00goodiala.djvu"><img class="bookcover" src="covers/faggotsforfiresi00goodiala.jpg"></a><br />
<span class="booktitle">Faggots for the fireside; or, Tales of </span>
</span></div>
<div class="thumbnail"><a class="category" id="fairburnscabinet00londiala" href="djvu/fairburnscabinet00londiala.djvu"><img class="bookcover" src="covers/fairburnscabinet00londiala.jpg"></a><br />
<span class="booktitle">Fairburn's cabinet of instruction and amusement </span>
</span></div>
<div class="thumbnail"><a class="category" id="fairytalesbyhans00andeiala" href="djvu/fairytalesbyhans00andeiala.djvu"><img class="bookcover" src="covers/fairytalesbyhans00andeiala.jpg"></a><br />
<span class="booktitle">Fairy tales / by Hans Christian Andersen </span>
</span></div>
<div class="thumbnail"><a class="category" id="fannypercysknigh00grah" href="djvu/fannypercysknigh00grah.djvu"><img class="bookcover" src="covers/fannypercysknigh00grah.jpg"></a><br />
<span class="booktitle">Fanny Percy's knight-errant .. </span>
</span></div>
<div class="thumbnail"><a class="category" id="fatherscominghom00elli" href="djvu/fatherscominghom00elli.djvu"><img class="bookcover" src="covers/fatherscominghom00elli.jpg"></a><br />
<span class="booktitle">Father's coming home </span>
</span></div>
<div class="thumbnail"><a class="category" id="fightinginfrance00kayr" href="djvu/fightinginfrance00kayr.djvu"><img class="bookcover" src="covers/fightinginfrance00kayr.jpg"></a><br />
<span class="booktitle">Fighting in France </span>
</span></div>
<div class="thumbnail"><a class="category" id="forestglenormoha00kell" href="djvu/forestglenormoha00kell.djvu"><img class="bookcover" src="covers/forestglenormoha00kell.jpg"></a><br />
<span class="booktitle">Forest Glen </span>
</span></div>
<div class="thumbnail"><a class="category" id="friarpuckothersk00peteiala" href="djvu/friarpuckothersk00peteiala.djvu"><img class="bookcover" src="covers/friarpuckothersk00peteiala.jpg"></a><br />
<span class="booktitle">Friar Puck </span>
</span></div>
<div class="thumbnail"><a class="category" id="generaljack00vrediala" href="djvu/generaljack00vrediala.djvu"><img class="bookcover" src="covers/generaljack00vrediala.jpg"></a><br />
<span class="booktitle">General Jack </span>
</span></div>
<div class="thumbnail"><a class="category" id="georgeatfortorli00cast" href="djvu/georgeatfortorli00cast.djvu"><img class="bookcover" src="covers/georgeatfortorli00cast.jpg"></a><br />
<span class="booktitle">George at the fort; or, Life among </span>
</span></div>
<div class="thumbnail"><a class="category" id="gettingwelltales00bradiala" href="djvu/gettingwelltales00bradiala.djvu"><img class="bookcover" src="covers/gettingwelltales00bradiala.jpg"></a><br />
<span class="booktitle">Getting well </span>
</span></div>
<div class="thumbnail"><a class="category" id="gifttoyoungfrien00haleiala" href="djvu/gifttoyoungfrien00haleiala.djvu"><img class="bookcover" src="covers/gifttoyoungfrien00haleiala.jpg"></a><br />
<span class="booktitle">Gift to young friends, or, The guide </span>
</span></div>
<div class="thumbnail"><a class="category" id="girlsownbookofam00proviala" href="djvu/girlsownbookofam00proviala.djvu"><img class="bookcover" src="covers/girlsownbookofam00proviala.jpg"></a><br />
<span class="booktitle">Girl's own book of amusing and instructive </span>
</span></div>
<div class="thumbnail"><a class="category" id="gracieherpets00hunt" href="djvu/gracieherpets00hunt.djvu"><img class="bookcover" src="covers/gracieherpets00hunt.jpg"></a><br />
<span class="booktitle">Gracie and her pets </span>
</span></div>
<div class="thumbnail"><a class="category" id="grandmammasrelic00boweiala" href="djvu/grandmammasrelic00boweiala.djvu"><img class="bookcover" src="covers/grandmammasrelic00boweiala.jpg"></a><br />
<span class="booktitle">Grandmamma's relics and her stories about them </span>
</span></div>
<div class="thumbnail"><a class="category" id="gwendolineorhalc00gibe" href="djvu/gwendolineorhalc00gibe.djvu"><img class="bookcover" src="covers/gwendolineorhalc00gibe.jpg"></a><br />
<span class="booktitle">Gwendoline; or, Halcots and Halcombes </span>
</span></div>
<div class="thumbnail"><a class="category" id="happyholidays00wick" href="djvu/happyholidays00wick.djvu"><img class="bookcover" src="covers/happyholidays00wick.jpg"></a><br />
<span class="booktitle">Happy holidays </span>
</span></div>
<div class="thumbnail"><a class="category" id="harrysladdertole00londiala" href="djvu/harrysladdertole00londiala.djvu"><img class="bookcover" src="covers/harrysladdertole00londiala.jpg"></a><br />
<span class="booktitle">Harry's ladder to learning </span>
</span></div>
<div class="thumbnail"><a class="category" id="helenmacgregoror00barl" href="djvu/helenmacgregoror00barl.djvu"><img class="bookcover" src="covers/helenmacgregoror00barl.jpg"></a><br />
<span class="booktitle">Helen MacGregor; or, Conquest and sacrifice </span>
</span></div>
<div class="thumbnail"><a class="category" id="henrywillsonsvoy00guer" href="djvu/henrywillsonsvoy00guer.djvu"><img class="bookcover" src="covers/henrywillsonsvoy00guer.jpg"></a><br />
<span class="booktitle">Henry Willson's voyage </span>
</span></div>
<div class="thumbnail"><a class="category" id="historyofmypets00greeiala" href="djvu/historyofmypets00greeiala.djvu"><img class="bookcover" src="covers/historyofmypets00greeiala.jpg"></a><br />
<span class="booktitle">History of my pets </span>
</span></div>
<div class="thumbnail"><a class="category" id="holidaytales00newyiala" href="djvu/holidaytales00newyiala.djvu"><img class="bookcover" src="covers/holidaytales00newyiala.jpg"></a><br />
<span class="booktitle">Holiday tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="holidaytales00proviala" href="djvu/holidaytales00proviala.djvu"><img class="bookcover" src="covers/holidaytales00proviala.jpg"></a><br />
<span class="booktitle">Holiday tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="holidaysatrosela00finl" href="djvu/holidaysatrosela00finl.djvu"><img class="bookcover" src="covers/holidaysatrosela00finl.jpg"></a><br />
<span class="booktitle">Holidays at Roselands; a sequel to Elsie </span>
</span></div>
<div class="thumbnail"><a class="category" id="homeitspleasures00myrtiala" href="djvu/homeitspleasures00myrtiala.djvu"><img class="bookcover" src="covers/homeitspleasures00myrtiala.jpg"></a><br />
<span class="booktitle">Home and its pleasures </span>
</span></div>
<div class="thumbnail"><a class="category" id="honeyblossomsfor00newy" href="djvu/honeyblossomsfor00newy.djvu"><img class="bookcover" src="covers/honeyblossomsfor00newy.jpg"></a><br />
<span class="booktitle">Honey blossoms for little bees </span>
</span></div>
<div class="thumbnail"><a class="category" id="hopeonorthehouse00newy" href="djvu/hopeonorthehouse00newy.djvu"><img class="bookcover" src="covers/hopeonorthehouse00newy.jpg"></a><br />
<span class="booktitle">Hope on; or "The house that Jack </span>
</span></div>
<div class="thumbnail"><a class="category" id="imaginotionstrut00jenk" href="djvu/imaginotionstrut00jenk.djvu"><img class="bookcover" src="covers/imaginotionstrut00jenk.jpg"></a><br />
<span class="booktitle">Imaginotions; truthless tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="influenceorlittl00phil" href="djvu/influenceorlittl00phil.djvu"><img class="bookcover" src="covers/influenceorlittl00phil.jpg"></a><br />
<span class="booktitle">Influence </span>
</span></div>
<div class="thumbnail"><a class="category" id="interestingmemoi01keir" href="djvu/interestingmemoi01keir.djvu"><img class="bookcover" src="covers/interestingmemoi01keir.jpg"></a><br />
<span class="booktitle">Interesting memoirs </span>
</span></div>
<div class="thumbnail"><a class="category" id="interestingtrait00ventiala" href="djvu/interestingtrait00ventiala.djvu"><img class="bookcover" src="covers/interestingtrait00ventiala.jpg"></a><br />
<span class="booktitle">Interesting traits of character </span>
</span></div>
<div class="thumbnail"><a class="category" id="irenetorescuesto00bald" href="djvu/irenetorescuesto00bald.djvu"><img class="bookcover" src="covers/irenetorescuesto00bald.jpg"></a><br />
<span class="booktitle">Irene to the rescue; the story of </span>
</span></div>
<div class="thumbnail"><a class="category" id="izildastoryofbra00barn" href="djvu/izildastoryofbra00barn.djvu"><img class="bookcover" src="covers/izildastoryofbra00barn.jpg"></a><br />
<span class="booktitle">Izilda; a story of Brazil </span>
</span></div>
<div class="thumbnail"><a class="category" id="jcole00gell" href="djvu/jcole00gell.djvu"><img class="bookcover" src="covers/jcole00gell.jpg"></a><br />
<span class="booktitle">J. Cole </span>
</span></div>
<div class="thumbnail"><a class="category" id="jackanapes00ewin3" href="djvu/jackanapes00ewin3.djvu"><img class="bookcover" src="covers/jackanapes00ewin3.jpg"></a><br />
<span class="booktitle">Jackanapes </span>
</span></div>
<div class="thumbnail"><a class="category" id="jackojumpokinkyt00gari" href="djvu/jackojumpokinkyt00gari.djvu"><img class="bookcover" src="covers/jackojumpokinkyt00gari.jpg"></a><br />
<span class="booktitle">Jacko and Jumpo Kinkytail the funny monkey </span>
</span></div>
<div class="thumbnail"><a class="category" id="janofwindmillsto00ewin4" href="djvu/janofwindmillsto00ewin4.djvu"><img class="bookcover" src="covers/janofwindmillsto00ewin4.jpg"></a><br />
<span class="booktitle">Jan of the windmill. A story of </span>
</span></div>
<div class="thumbnail"><a class="category" id="jessiegreyordisc00gl" href="djvu/jessiegreyordisc00gl.djvu"><img class="bookcover" src="covers/jessiegreyordisc00gl.jpg"></a><br />
<span class="booktitle">Jessie Grey; or, The discipline of life, </span>
</span></div>
<div class="thumbnail"><a class="category" id="joanofjuniperinn00jaco" href="djvu/joanofjuniperinn00jaco.djvu"><img class="bookcover" src="covers/joanofjuniperinn00jaco.jpg"></a><br />
<span class="booktitle">Joan of Juniper inn </span>
</span></div>
<div class="thumbnail"><a class="category" id="joelboyofgalilee00john" href="djvu/joelboyofgalilee00john.djvu"><img class="bookcover" src="covers/joelboyofgalilee00john.jpg"></a><br />
<span class="booktitle">Joel </span>
</span></div>
<div class="thumbnail"><a class="category" id="keepingtrysttale00john" href="djvu/keepingtrysttale00john.djvu"><img class="bookcover" src="covers/keepingtrysttale00john.jpg"></a><br />
<span class="booktitle">Keeping tryst; a tale of King Arthur's </span>
</span></div>
<div class="thumbnail"><a class="category" id="lamidesenfants00berq" href="djvu/lamidesenfants00berq.djvu"><img class="bookcover" src="covers/lamidesenfants00berq.jpg"></a><br />
<span class="booktitle">L'ami des enfants </span>
</span></div>
<div class="thumbnail"><a class="category" id="leavesforchristm00bostiala" href="djvu/leavesforchristm00bostiala.djvu"><img class="bookcover" src="covers/leavesforchristm00bostiala.jpg"></a><br />
<span class="booktitle">Leaves for a Christmas bough </span>
</span></div>
<div class="thumbnail"><a class="category" id="leftguardgilbert00barb" href="djvu/leftguardgilbert00barb.djvu"><img class="bookcover" src="covers/leftguardgilbert00barb.jpg"></a><br />
<span class="booktitle">Left guard Gilbert </span>
</span></div>
<div class="thumbnail"><a class="category" id="leisurehoursoren00wakeiala" href="djvu/leisurehoursoren00wakeiala.djvu"><img class="bookcover" src="covers/leisurehoursoren00wakeiala.jpg"></a><br />
<span class="booktitle">Leisure hours; or, Entertaining dialogues, between persons </span>
</span></div>
<div class="thumbnail"><a class="category" id="lilysscrapbook00barkiala" href="djvu/lilysscrapbook00barkiala.djvu"><img class="bookcover" src="covers/lilysscrapbook00barkiala.jpg"></a><br />
<span class="booktitle">Lily's scrap-book </span>
</span></div>
<div class="thumbnail"><a class="category" id="littleblossomsre00john" href="djvu/littleblossomsre00john.djvu"><img class="bookcover" src="covers/littleblossomsre00john.jpg"></a><br />
<span class="booktitle">Little Blossom's reward </span>
</span></div>
<div class="thumbnail"><a class="category" id="littleblueeyesot00londiala" href="djvu/littleblueeyesot00londiala.djvu"><img class="bookcover" src="covers/littleblueeyesot00londiala.jpg"></a><br />
<span class="booktitle">Little Blue-eyes </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlecroppythem00hughiala" href="djvu/littlecroppythem00hughiala.djvu"><img class="bookcover" src="covers/littlecroppythem00hughiala.jpg"></a><br />
<span class="booktitle">Little Croppy </span>
</span></div>
<div class="thumbnail"><a class="category" id="littleellieother00andeiala" href="djvu/littleellieother00andeiala.djvu"><img class="bookcover" src="covers/littleellieother00andeiala.jpg"></a><br />
<span class="booktitle">Little Ellie and other tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlefolksownst00good" href="djvu/littlefolksownst00good.djvu"><img class="bookcover" src="covers/littlefolksownst00good.jpg"></a><br />
<span class="booktitle">Little folks' own </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlehenryhisbi00daniiala" href="djvu/littlehenryhisbi00daniiala.djvu"><img class="bookcover" src="covers/littlehenryhisbi00daniiala.jpg"></a><br />
<span class="booktitle">Little Henry and his bird </span>
</span></div>
<div class="thumbnail"><a class="category" id="littleplayfellow00cinciala" href="djvu/littleplayfellow00cinciala.djvu"><img class="bookcover" src="covers/littleplayfellow00cinciala.jpg"></a><br />
<span class="booktitle">Little playfellows </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlepollyprent00goul" href="djvu/littlepollyprent00goul.djvu"><img class="bookcover" src="covers/littlepollyprent00goul.jpg"></a><br />
<span class="booktitle">Little Polly Prentiss </span>
</span></div>
<div class="thumbnail"><a class="category" id="littleprudymayso00maysiala" href="djvu/littleprudymayso00maysiala.djvu"><img class="bookcover" src="covers/littleprudymayso00maysiala.jpg"></a><br />
<span class="booktitle">Little Prudy </span>
</span></div>
<div class="thumbnail"><a class="category" id="littleprudyscapt00maysiala" href="djvu/littleprudyscapt00maysiala.djvu"><img class="bookcover" src="covers/littleprudyscapt00maysiala.jpg"></a><br />
<span class="booktitle">Little Prudy's Captain Horace </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlerubiwoodca00newyiala" href="djvu/littlerubiwoodca00newyiala.djvu"><img class="bookcover" src="covers/littlerubiwoodca00newyiala.jpg"></a><br />
<span class="booktitle">Little Rubi, the wood-carver </span>
</span></div>
<div class="thumbnail"><a class="category" id="lostlenoreoradve00reid" href="djvu/lostlenoreoradve00reid.djvu"><img class="bookcover" src="covers/lostlenoreoradve00reid.jpg"></a><br />
<span class="booktitle">Lost Lenore; or, The adventures of a </span>
</span></div>
<div class="thumbnail"><a class="category" id="mammasdarling00bostiala" href="djvu/mammasdarling00bostiala.djvu"><img class="bookcover" src="covers/mammasdarling00bostiala.jpg"></a><br />
<span class="booktitle">Mamma's darling </span>
</span></div>
<div class="thumbnail"><a class="category" id="mammaspresent00londiala" href="djvu/mammaspresent00londiala.djvu"><img class="bookcover" src="covers/mammaspresent00londiala.jpg"></a><br />
<span class="booktitle">Mamma's present </span>
</span></div>
<div class="thumbnail"><a class="category" id="mammasversesorli00breniala" href="djvu/mammasversesorli00breniala.djvu"><img class="bookcover" src="covers/mammasversesorli00breniala.jpg"></a><br />
<span class="booktitle">Mamma's verses, or, Lines for little Londoners </span>
</span></div>
<div class="thumbnail"><a class="category" id="martinrattlerorb00ball" href="djvu/martinrattlerorb00ball.djvu"><img class="bookcover" src="covers/martinrattlerorb00ball.jpg"></a><br />
<span class="booktitle">Martin Rattler; or, A boy's adventures in </span>
</span></div>
<div class="thumbnail"><a class="category" id="maryburnsorbeset00bake" href="djvu/maryburnsorbeset00bake.djvu"><img class="bookcover" src="covers/maryburnsorbeset00bake.jpg"></a><br />
<span class="booktitle">Mary Burns </span>
</span></div>
<div class="thumbnail"><a class="category" id="marygraytaleforl00knigiala" href="djvu/marygraytaleforl00knigiala.djvu"><img class="bookcover" src="covers/marygraytaleforl00knigiala.jpg"></a><br />
<span class="booktitle">Mary Gray </span>
</span></div>
<div class="thumbnail"><a class="category" id="matildaoradventu00londiala" href="djvu/matildaoradventu00londiala.djvu"><img class="bookcover" src="covers/matildaoradventu00londiala.jpg"></a><br />
<span class="booktitle">Matilda, or, The adventures of an orphan </span>
</span></div>
<div class="thumbnail"><a class="category" id="melchiorsdreamot00ewin4" href="djvu/melchiorsdreamot00ewin4.djvu"><img class="bookcover" src="covers/melchiorsdreamot00ewin4.jpg"></a><br />
<span class="booktitle">Melchior's dream </span>
</span></div>
<div class="thumbnail"><a class="category" id="melchiorsdreamot00ewiniala" href="djvu/melchiorsdreamot00ewiniala.djvu"><img class="bookcover" src="covers/melchiorsdreamot00ewiniala.jpg"></a><br />
<span class="booktitle">Melchior's dream </span>
</span></div>
<div class="thumbnail"><a class="category" id="molly00yech" href="djvu/molly00yech.djvu"><img class="bookcover" src="covers/molly00yech.jpg"></a><br />
<span class="booktitle">Molly </span>
</span></div>
<div class="thumbnail"><a class="category" id="moralentertainin00uxbriala" href="djvu/moralentertainin00uxbriala.djvu"><img class="bookcover" src="covers/moralentertainin00uxbriala.jpg"></a><br />
<span class="booktitle">Moral and entertaining stories, for youth </span>
</span></div>
<div class="thumbnail"><a class="category" id="moraltalesinpros00londiala" href="djvu/moraltalesinpros00londiala.djvu"><img class="bookcover" src="covers/moraltalesinpros00londiala.jpg"></a><br />
<span class="booktitle">Moral tales in prose and verse </span>
</span></div>
<div class="thumbnail"><a class="category" id="moremittenswithd00fann" href="djvu/moremittenswithd00fann.djvu"><img class="bookcover" src="covers/moremittenswithd00fann.jpg"></a><br />
<span class="booktitle">More mittens </span>
</span></div>
<div class="thumbnail"><a class="category" id="moreshortstorie00sempiala" href="djvu/moreshortstorie00sempiala.djvu"><img class="bookcover" src="covers/moreshortstorie00sempiala.jpg"></a><br />
<span class="booktitle">More short stories, in words of two </span>
</span></div>
<div class="thumbnail"><a class="category" id="moretalesforidle00londiala" href="djvu/moretalesforidle00londiala.djvu"><img class="bookcover" src="covers/moretalesforidle00londiala.jpg"></a><br />
<span class="booktitle">More tales for idle hours </span>
</span></div>
<div class="thumbnail"><a class="category" id="mrrutherfordschi00warniala" href="djvu/mrrutherfordschi00warniala.djvu"><img class="bookcover" src="covers/mrrutherfordschi00warniala.jpg"></a><br />
<span class="booktitle">Mr. Rutherford's children </span>
</span></div>
<div class="thumbnail"><a class="category" id="myfrienddoggie00glasiala" href="djvu/myfrienddoggie00glasiala.djvu"><img class="bookcover" src="covers/myfrienddoggie00glasiala.jpg"></a><br />
<span class="booktitle">My friend Doggie </span>
</span></div>
<div class="thumbnail"><a class="category" id="myfriendorincide00londiala" href="djvu/myfriendorincide00londiala.djvu"><img class="bookcover" src="covers/myfriendorincide00londiala.jpg"></a><br />
<span class="booktitle">My friend, or, Incidents in life </span>
</span></div>
<div class="thumbnail"><a class="category" id="myowntreasurygif00londiala" href="djvu/myowntreasurygif00londiala.djvu"><img class="bookcover" src="covers/myowntreasurygif00londiala.jpg"></a><br />
<span class="booktitle">My own treasury </span>
</span></div>
<div class="thumbnail"><a class="category" id="myprettyscrapboo00cuppiala" href="djvu/myprettyscrapboo00cuppiala.djvu"><img class="bookcover" src="covers/myprettyscrapboo00cuppiala.jpg"></a><br />
<span class="booktitle">My pretty scrap-book, or, Picture pages and </span>
</span></div>
<div class="thumbnail"><a class="category" id="myrealfriendorin00londiala" href="djvu/myrealfriendorin00londiala.djvu"><img class="bookcover" src="covers/myrealfriendorin00londiala.jpg"></a><br />
<span class="booktitle">My real friend, or, Incidents in life, </span>
</span></div>
<div class="thumbnail"><a class="category" id="mystrangefriend00finn" href="djvu/mystrangefriend00finn.djvu"><img class="bookcover" src="covers/mystrangefriend00finn.jpg"></a><br />
<span class="booktitle">My strange friend </span>
</span></div>
<div class="thumbnail"><a class="category" id="newjuvenilescrap00ceciiala" href="djvu/newjuvenilescrap00ceciiala.djvu"><img class="bookcover" src="covers/newjuvenilescrap00ceciiala.jpg"></a><br />
<span class="booktitle">New juvenile scrap book </span>
</span></div>
<div class="thumbnail"><a class="category" id="nightsofroundtab00john" href="djvu/nightsofroundtab00john.djvu"><img class="bookcover" src="covers/nightsofroundtab00john.jpg"></a><br />
<span class="booktitle">Nights of the round table; or, Stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="nurserylessonsin00londiala" href="djvu/nurserylessonsin00londiala.djvu"><img class="bookcover" src="covers/nurserylessonsin00londiala.jpg"></a><br />
<span class="booktitle">Nursery lessons </span>
</span></div>
<div class="thumbnail"><a class="category" id="oldwondereyesoth00lippiala" href="djvu/oldwondereyesoth00lippiala.djvu"><img class="bookcover" src="covers/oldwondereyesoth00lippiala.jpg"></a><br />
<span class="booktitle">Old Wonder-Eyes </span>
</span></div>
<div class="thumbnail"><a class="category" id="olivebuds00sigoiala" href="djvu/olivebuds00sigoiala.djvu"><img class="bookcover" src="covers/olivebuds00sigoiala.jpg"></a><br />
<span class="booktitle">Olive buds </span>
</span></div>
<div class="thumbnail"><a class="category" id="oncandlestick00leef" href="djvu/oncandlestick00leef.djvu"><img class="bookcover" src="covers/oncandlestick00leef.jpg"></a><br />
<span class="booktitle">On a candlestick </span>
</span></div>
<div class="thumbnail"><a class="category" id="ourchristmaspart00hoddiala" href="djvu/ourchristmaspart00hoddiala.djvu"><img class="bookcover" src="covers/ourchristmaspart00hoddiala.jpg"></a><br />
<span class="booktitle">Our Christmas party </span>
</span></div>
<div class="thumbnail"><a class="category" id="outaboutboysadve00fris" href="djvu/outaboutboysadve00fris.djvu"><img class="bookcover" src="covers/outaboutboysadve00fris.jpg"></a><br />
<span class="booktitle">Out and about; a boy's adventures, written </span>
</span></div>
<div class="thumbnail"><a class="category" id="parleyspicturebo00goodiala" href="djvu/parleyspicturebo00goodiala.djvu"><img class="bookcover" src="covers/parleyspicturebo00goodiala.jpg"></a><br />
<span class="booktitle">Parley's picture book </span>
</span></div>
<div class="thumbnail"><a class="category" id="peterparleysgift00goodiala" href="djvu/peterparleysgift00goodiala.djvu"><img class="bookcover" src="covers/peterparleysgift00goodiala.jpg"></a><br />
<span class="booktitle">Peter Parley's gift, for MDCCCXXXIX </span>
</span></div>
<div class="thumbnail"><a class="category" id="peterparleysjuv00goodiala" href="djvu/peterparleysjuv00goodiala.djvu"><img class="bookcover" src="covers/peterparleysjuv00goodiala.jpg"></a><br />
<span class="booktitle">Peter Parley's juvenile tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="peterparleysjuve00goodiala" href="djvu/peterparleysjuve00goodiala.djvu"><img class="bookcover" src="covers/peterparleysjuve00goodiala.jpg"></a><br />
<span class="booktitle">Peter Parley's juvenile tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="piccinootherchil00burniala" href="djvu/piccinootherchil00burniala.djvu"><img class="bookcover" src="covers/piccinootherchil00burniala.jpg"></a><br />
<span class="booktitle">Piccino and other child stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="picturesstories00proviala" href="djvu/picturesstories00proviala.djvu"><img class="bookcover" src="covers/picturesstories00proviala.jpg"></a><br />
<span class="booktitle">Pictures and stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="plaintalesoradva00heyriala" href="djvu/plaintalesoradva00heyriala.djvu"><img class="bookcover" src="covers/plaintalesoradva00heyriala.jpg"></a><br />
<span class="booktitle">Plain tales, or, The advantages of industry </span>
</span></div>
<div class="thumbnail"><a class="category" id="pleasanttalestoi00londiala" href="djvu/pleasanttalestoi00londiala.djvu"><img class="bookcover" src="covers/pleasanttalestoi00londiala.jpg"></a><br />
<span class="booktitle">Pleasant tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="pleasingstoriesf00cinciala" href="djvu/pleasingstoriesf00cinciala.djvu"><img class="bookcover" src="covers/pleasingstoriesf00cinciala.jpg"></a><br />
<span class="booktitle">Pleasing stories for good children </span>
</span></div>
<div class="thumbnail"><a class="category" id="pleasingtalesfor00londiala" href="djvu/pleasingtalesfor00londiala.djvu"><img class="bookcover" src="covers/pleasingtalesfor00londiala.jpg"></a><br />
<span class="booktitle">Pleasing tales, for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="prankorphilosoph00abboiala" href="djvu/prankorphilosoph00abboiala.djvu"><img class="bookcover" src="covers/prankorphilosoph00abboiala.jpg"></a><br />
<span class="booktitle">Prank; or, The philosophy of tricks and </span>
</span></div>
<div class="thumbnail"><a class="category" id="prettytalesfornu00kroniala" href="djvu/prettytalesfornu00kroniala.djvu"><img class="bookcover" src="covers/prettytalesfornu00kroniala.jpg"></a><br />
<span class="booktitle">Pretty tales for the nursery </span>
</span></div>
<div class="thumbnail"><a class="category" id="princecarrotteot00bake" href="djvu/princecarrotteot00bake.djvu"><img class="bookcover" src="covers/princecarrotteot00bake.jpg"></a><br />
<span class="booktitle">Prince Carrotte </span>
</span></div>
<div class="thumbnail"><a class="category" id="recollectionsofa00hopp2" href="djvu/recollectionsofa00hopp2.djvu"><img class="bookcover" src="covers/recollectionsofa00hopp2.jpg"></a><br />
<span class="booktitle">Recollections of Auton House .. </span>
</span></div>
<div class="thumbnail"><a class="category" id="ripestrawberries00lesliala" href="djvu/ripestrawberries00lesliala.djvu"><img class="bookcover" src="covers/ripestrawberries00lesliala.jpg"></a><br />
<span class="booktitle">Ripe strawberries </span>
</span></div>
<div class="thumbnail"><a class="category" id="robandkit00whitiala" href="djvu/robandkit00whitiala.djvu"><img class="bookcover" src="covers/robandkit00whitiala.jpg"></a><br />
<span class="booktitle">Rob and Kit </span>
</span></div>
<div class="thumbnail"><a class="category" id="rosetremaineorbl00bostiala" href="djvu/rosetremaineorbl00bostiala.djvu"><img class="bookcover" src="covers/rosetremaineorbl00bostiala.jpg"></a><br />
<span class="booktitle">Rose Tremaine, or, The blackberries </span>
</span></div>
<div class="thumbnail"><a class="category" id="royblakeleysadve00fitz" href="djvu/royblakeleysadve00fitz.djvu"><img class="bookcover" src="covers/royblakeleysadve00fitz.jpg"></a><br />
<span class="booktitle">Roy Blakeley's adventures in camp </span>
</span></div>
<div class="thumbnail"><a class="category" id="sandfordmertonin00dayt" href="djvu/sandfordmertonin00dayt.djvu"><img class="bookcover" src="covers/sandfordmertonin00dayt.jpg"></a><br />
<span class="booktitle">Sandford and Merton </span>
</span></div>
<div class="thumbnail"><a class="category" id="selecttalesinpro00parliala" href="djvu/selecttalesinpro00parliala.djvu"><img class="bookcover" src="covers/selecttalesinpro00parliala.jpg"></a><br />
<span class="booktitle">Select tales in prose and verse </span>
</span></div>
<div class="thumbnail"><a class="category" id="sevendaughters00doug" href="djvu/sevendaughters00doug.djvu"><img class="bookcover" src="covers/sevendaughters00doug.jpg"></a><br />
<span class="booktitle">Seven daughters </span>
</span></div>
<div class="thumbnail"><a class="category" id="shortstoriesortr00banbiala" href="djvu/shortstoriesortr00banbiala.djvu"><img class="bookcover" src="covers/shortstoriesortr00banbiala.jpg"></a><br />
<span class="booktitle">Short stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="simplestoriesfor00londiala" href="djvu/simplestoriesfor00londiala.djvu"><img class="bookcover" src="covers/simplestoriesfor00londiala.jpg"></a><br />
<span class="booktitle">Simple stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="socialeveningsor00leem" href="djvu/socialeveningsor00leem.djvu"><img class="bookcover" src="covers/socialeveningsor00leem.jpg"></a><br />
<span class="booktitle">Social evenings; or, Historical tales for youth </span>
</span></div>
<div class="thumbnail"><a class="category" id="somethingforwetd00hoyeiala" href="djvu/somethingforwetd00hoyeiala.djvu"><img class="bookcover" src="covers/somethingforwetd00hoyeiala.jpg"></a><br />
<span class="booktitle">Something for a wet day, or, Uncle </span>
</span></div>
<div class="thumbnail"><a class="category" id="songsstories00andriala" href="djvu/songsstories00andriala.djvu"><img class="bookcover" src="covers/songsstories00andriala.jpg"></a><br />
<span class="booktitle">Songs and stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="springflowerssum00londiala" href="djvu/springflowerssum00londiala.djvu"><img class="bookcover" src="covers/springflowerssum00londiala.jpg"></a><br />
<span class="booktitle">Spring flowers and summer blossoms </span>
</span></div>
<div class="thumbnail"><a class="category" id="storiespicturesf00leatiala" href="djvu/storiespicturesf00leatiala.djvu"><img class="bookcover" src="covers/storiespicturesf00leatiala.jpg"></a><br />
<span class="booktitle">Stories and pictures for young children </span>
</span></div>
<div class="thumbnail"><a class="category" id="storieschildrenc00hughiala" href="djvu/storieschildrenc00hughiala.djvu"><img class="bookcover" src="covers/storieschildrenc00hughiala.jpg"></a><br />
<span class="booktitle">Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="storiesforchildr00hughiala" href="djvu/storiesforchildr00hughiala.djvu"><img class="bookcover" src="covers/storiesforchildr00hughiala.jpg"></a><br />
<span class="booktitle">Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="storiesforhelen00lesliala" href="djvu/storiesforhelen00lesliala.djvu"><img class="bookcover" src="covers/storiesforhelen00lesliala.jpg"></a><br />
<span class="booktitle">Stories for Helen </span>
</span></div>
<div class="thumbnail"><a class="category" id="storiesforlittle02hayeiala" href="djvu/storiesforlittle02hayeiala.djvu"><img class="bookcover" src="covers/storiesforlittle02hayeiala.jpg"></a><br />
<span class="booktitle">Stories for little children </span>
</span></div>
<div class="thumbnail"><a class="category" id="storiesforhouseh00andeiala" href="djvu/storiesforhouseh00andeiala.djvu"><img class="bookcover" src="covers/storiesforhouseh00andeiala.jpg"></a><br />
<span class="booktitle">Stories for the household </span>
</span></div>
<div class="thumbnail"><a class="category" id="storiesfromswitz00londiala" href="djvu/storiesfromswitz00londiala.djvu"><img class="bookcover" src="covers/storiesfromswitz00londiala.jpg"></a><br />
<span class="booktitle">Stories from Switzerland </span>
</span></div>
<div class="thumbnail"><a class="category" id="sunshineshowerss00mettiala" href="djvu/sunshineshowerss00mettiala.djvu"><img class="bookcover" src="covers/sunshineshowerss00mettiala.jpg"></a><br />
<span class="booktitle">Sunshine and showers </span>
</span></div>
<div class="thumbnail"><a class="category" id="tabartscollectio00godwiala" href="djvu/tabartscollectio00godwiala.djvu"><img class="bookcover" src="covers/tabartscollectio00godwiala.jpg"></a><br />
<span class="booktitle">Tabart's collection of popular stories for the </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesnovelsforyo00pariiala" href="djvu/talesnovelsforyo00pariiala.djvu"><img class="bookcover" src="covers/talesnovelsforyo00pariiala.jpg"></a><br />
<span class="booktitle">Tales and novels for youth of both </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesforchildren00ladyiala" href="djvu/talesforchildren00ladyiala.djvu"><img class="bookcover" src="covers/talesforchildren00ladyiala.jpg"></a><br />
<span class="booktitle">Tales for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesfordomestic00ventiala" href="djvu/talesfordomestic00ventiala.djvu"><img class="bookcover" src="covers/talesfordomestic00ventiala.jpg"></a><br />
<span class="booktitle">Tales for domestic instruction </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesoffantasy00jenk" href="djvu/talesoffantasy00jenk.djvu"><img class="bookcover" src="covers/talesoffantasy00jenk.jpg"></a><br />
<span class="booktitle">Tales of fantasy </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesofarbororev00londiala" href="djvu/talesofarbororev00londiala.djvu"><img class="bookcover" src="covers/talesofarbororev00londiala.jpg"></a><br />
<span class="booktitle">Tales of the arbor, or, Evening rewards </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesofbowerorre00gilliala" href="djvu/talesofbowerorre00gilliala.djvu"><img class="bookcover" src="covers/talesofbowerorre00gilliala.jpg"></a><br />
<span class="booktitle">Tales of the bower, or, Rewards for </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesofsealand00goodiala" href="djvu/talesofsealand00goodiala.djvu"><img class="bookcover" src="covers/talesofsealand00goodiala.jpg"></a><br />
<span class="booktitle">Tales of the sea and land </span>
</span></div>
<div class="thumbnail"><a class="category" id="talesofvicarag00selwiala" href="djvu/talesofvicarag00selwiala.djvu"><img class="bookcover" src="covers/talesofvicarag00selwiala.jpg"></a><br />
<span class="booktitle">Tales of the vicarage </span>
</span></div>
<div class="thumbnail"><a class="category" id="tattine00ogde" href="djvu/tattine00ogde.djvu"><img class="bookcover" src="covers/tattine00ogde.jpg"></a><br />
<span class="booktitle">Tattine </span>
</span></div>
<div class="thumbnail"><a class="category" id="teacherspresentc00bostiala" href="djvu/teacherspresentc00bostiala.djvu"><img class="bookcover" src="covers/teacherspresentc00bostiala.jpg"></a><br />
<span class="booktitle">Teachers' present </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlefolkspaint00weatiala" href="djvu/littlefolkspaint00weatiala.djvu"><img class="bookcover" src="covers/littlefolkspaint00weatiala.jpg"></a><br />
<span class="booktitle">The "Little folks" painting book </span>
</span></div>
<div class="thumbnail"><a class="category" id="adventuresofcoun00otis" href="djvu/adventuresofcoun00otis.djvu"><img class="bookcover" src="covers/adventuresofcoun00otis.jpg"></a><br />
<span class="booktitle">The adventures of a country boy at </span>
</span></div>
<div class="thumbnail"><a class="category" id="adventuresofpete00bear" href="djvu/adventuresofpete00bear.djvu"><img class="bookcover" src="covers/adventuresofpete00bear.jpg"></a><br />
<span class="booktitle">The adventures of Peter Peterkin </span>
</span></div>
<div class="thumbnail"><a class="category" id="birthdaygift00parliala" href="djvu/birthdaygift00parliala.djvu"><img class="bookcover" src="covers/birthdaygift00parliala.jpg"></a><br />
<span class="booktitle">The birthday gift </span>
</span></div>
<div class="thumbnail"><a class="category" id="blackauntstories00fechiala" href="djvu/blackauntstories00fechiala.djvu"><img class="bookcover" src="covers/blackauntstories00fechiala.jpg"></a><br />
<span class="booktitle">The black aunt </span>
</span></div>
<div class="thumbnail"><a class="category" id="bobbseytwinsatho00hope" href="djvu/bobbseytwinsatho00hope.djvu"><img class="bookcover" src="covers/bobbseytwinsatho00hope.jpg"></a><br />
<span class="booktitle">The Bobbsey twins at home </span>
</span></div>
<div class="thumbnail"><a class="category" id="bobbseytwinsatco00hope" href="djvu/bobbseytwinsatco00hope.djvu"><img class="bookcover" src="covers/bobbseytwinsatco00hope.jpg"></a><br />
<span class="booktitle">The Bobbsey Twins at the county fair </span>
</span></div>
<div class="thumbnail"><a class="category" id="bobbseytwinsinwa00hope" href="djvu/bobbseytwinsinwa00hope.djvu"><img class="bookcover" src="covers/bobbseytwinsinwa00hope.jpg"></a><br />
<span class="booktitle">The Bobbsey twins in Washington. </span>
</span></div>
<div class="thumbnail"><a class="category" id="bookoffableswith00worciala" href="djvu/bookoffableswith00worciala.djvu"><img class="bookcover" src="covers/bookoffableswith00worciala.jpg"></a><br />
<span class="booktitle">The book of fables </span>
</span></div>
<div class="thumbnail"><a class="category" id="boyallieswithgre00drak" href="djvu/boyallieswithgre00drak.djvu"><img class="bookcover" src="covers/boyallieswithgre00drak.jpg"></a><br />
<span class="booktitle">The boy allies with the great advance </span>
</span></div>
<div class="thumbnail"><a class="category" id="boyaviatorsinafr00lawt" href="djvu/boyaviatorsinafr00lawt.djvu"><img class="bookcover" src="covers/boyaviatorsinafr00lawt.jpg"></a><br />
<span class="booktitle">The boy aviators in Africa; or, An </span>
</span></div>
<div class="thumbnail"><a class="category" id="boyaviatorsinrec00pays" href="djvu/boyaviatorsinrec00pays.djvu"><img class="bookcover" src="covers/boyaviatorsinrec00pays.jpg"></a><br />
<span class="booktitle">The boy aviators in record flight; or, </span>
</span></div>
<div class="thumbnail"><a class="category" id="boyspiesofphilad00otis" href="djvu/boyspiesofphilad00otis.djvu"><img class="bookcover" src="covers/boyspiesofphilad00otis.jpg"></a><br />
<span class="booktitle">The boy spies of Philadelphia </span>
</span></div>
<div class="thumbnail"><a class="category" id="boyspieswithregu00otis" href="djvu/boyspieswithregu00otis.djvu"><img class="bookcover" src="covers/boyspieswithregu00otis.jpg"></a><br />
<span class="booktitle">The boy spies with the regulators </span>
</span></div>
<div class="thumbnail"><a class="category" id="brokenvaseothers00fitciala" href="djvu/brokenvaseothers00fitciala.djvu"><img class="bookcover" src="covers/brokenvaseothers00fitciala.jpg"></a><br />
<span class="booktitle">The Broken vase, and other stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="campfiregirlsinm00frey" href="djvu/campfiregirlsinm00frey.djvu"><img class="bookcover" src="covers/campfiregirlsinm00frey.jpg"></a><br />
<span class="booktitle">The camp fire girls in the Maine </span>
</span></div>
<div class="thumbnail"><a class="category" id="carrierpigeonoth00colmiala" href="djvu/carrierpigeonoth00colmiala.djvu"><img class="bookcover" src="covers/carrierpigeonoth00colmiala.jpg"></a><br />
<span class="booktitle">The carrier pigeon, and other tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="casketofprosepoe00farriala" href="djvu/casketofprosepoe00farriala.djvu"><img class="bookcover" src="covers/casketofprosepoe00farriala.jpg"></a><br />
<span class="booktitle">The casket of prose, poetry and pictures </span>
</span></div>
<div class="thumbnail"><a class="category" id="childsbookconsis00sigoiala" href="djvu/childsbookconsis00sigoiala.djvu"><img class="bookcover" src="covers/childsbookconsis00sigoiala.jpg"></a><br />
<span class="booktitle">The child's book </span>
</span></div>
<div class="thumbnail"><a class="category" id="childscasketwith00worciala" href="djvu/childscasketwith00worciala.djvu"><img class="bookcover" src="covers/childscasketwith00worciala.jpg"></a><br />
<span class="booktitle">The child's casket </span>
</span></div>
<div class="thumbnail"><a class="category" id="childscolouredgi00dalziala" href="djvu/childscolouredgi00dalziala.djvu"><img class="bookcover" src="covers/childscolouredgi00dalziala.jpg"></a><br />
<span class="booktitle">The child's coloured gift book </span>
</span></div>
<div class="thumbnail"><a class="category" id="childscuriosityb00londiala" href="djvu/childscuriosityb00londiala.djvu"><img class="bookcover" src="covers/childscuriosityb00londiala.jpg"></a><br />
<span class="booktitle">The child's curiosity book </span>
</span></div>
<div class="thumbnail"><a class="category" id="childsownbookcon00londiala" href="djvu/childsownbookcon00londiala.djvu"><img class="bookcover" src="covers/childsownbookcon00londiala.jpg"></a><br />
<span class="booktitle">The child's own book </span>
</span></div>
<div class="thumbnail"><a class="category" id="childsownstorybo00newhiala" href="djvu/childsownstorybo00newhiala.djvu"><img class="bookcover" src="covers/childsownstorybo00newhiala.jpg"></a><br />
<span class="booktitle">The child's own story book, or, Simple </span>
</span></div>
<div class="thumbnail"><a class="category" id="childsstorybooko00newhiala" href="djvu/childsstorybooko00newhiala.djvu"><img class="bookcover" src="covers/childsstorybooko00newhiala.jpg"></a><br />
<span class="booktitle">The child's own story book, or, Simple </span>
</span></div>
<div class="thumbnail"><a class="category" id="childsownstorybo00jerr" href="djvu/childsownstorybo00jerr.djvu"><img class="bookcover" src="covers/childsownstorybo00jerr.jpg"></a><br />
<span class="booktitle">The child's own story book; or, Tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="childsstorybook00newyiala" href="djvu/childsstorybook00newyiala.djvu"><img class="bookcover" src="covers/childsstorybook00newyiala.jpg"></a><br />
<span class="booktitle">The Child's story-book </span>
</span></div>
<div class="thumbnail"><a class="category" id="childrensbookcol00crociala" href="djvu/childrensbookcol00crociala.djvu"><img class="bookcover" src="covers/childrensbookcol00crociala.jpg"></a><br />
<span class="booktitle">The children's book </span>
</span></div>
<div class="thumbnail"><a class="category" id="childrensmiscell00browiala" href="djvu/childrensmiscell00browiala.djvu"><img class="bookcover" src="covers/childrensmiscell00browiala.jpg"></a><br />
<span class="booktitle">The Children's miscellany </span>
</span></div>
<div class="thumbnail"><a class="category" id="childrensmiscell04edgeiala" href="djvu/childrensmiscell04edgeiala.djvu"><img class="bookcover" src="covers/childrensmiscell04edgeiala.jpg"></a><br />
<span class="booktitle">The Children's miscellany; consisting of select stories, </span>
</span></div>
<div class="thumbnail"><a class="category" id="childrensmiscell02edgeiala" href="djvu/childrensmiscell02edgeiala.djvu"><img class="bookcover" src="covers/childrensmiscell02edgeiala.jpg"></a><br />
<span class="booktitle">The Children's miscellany; consisting of select stories, </span>
</span></div>
<div class="thumbnail"><a class="category" id="childrensmiscell03edgeiala" href="djvu/childrensmiscell03edgeiala.djvu"><img class="bookcover" src="covers/childrensmiscell03edgeiala.jpg"></a><br />
<span class="booktitle">The Children's miscellany; consisting of select stories, </span>
</span></div>
<div class="thumbnail"><a class="category" id="danishstorybook00andeiala" href="djvu/danishstorybook00andeiala.djvu"><img class="bookcover" src="covers/danishstorybook00andeiala.jpg"></a><br />
<span class="booktitle">The Danish story book </span>
</span></div>
<div class="thumbnail"><a class="category" id="daysmonthsseason00jacoiala" href="djvu/daysmonthsseason00jacoiala.djvu"><img class="bookcover" src="covers/daysmonthsseason00jacoiala.jpg"></a><br />
<span class="booktitle">The days, months, and seasons of the </span>
</span></div>
<div class="thumbnail"><a class="category" id="discontentedrobi00foxmiala" href="djvu/discontentedrobi00foxmiala.djvu"><img class="bookcover" src="covers/discontentedrobi00foxmiala.jpg"></a><br />
<span class="booktitle">The discontented robins </span>
</span></div>
<div class="thumbnail"><a class="category" id="dollherfriendsor00maitiala" href="djvu/dollherfriendsor00maitiala.djvu"><img class="bookcover" src="covers/dollherfriendsor00maitiala.jpg"></a><br />
<span class="booktitle">The doll and her friends, or, Memoirs </span>
</span></div>
<div class="thumbnail"><a class="category" id="dreamadventureso00gold" href="djvu/dreamadventureso00gold.djvu"><img class="bookcover" src="covers/dreamadventureso00gold.jpg"></a><br />
<span class="booktitle">The dream adventures of little Bill; </span>
</span></div>
<div class="thumbnail"><a class="category" id="dreamfulfilledor00bost" href="djvu/dreamfulfilledor00bost.djvu"><img class="bookcover" src="covers/dreamfulfilledor00bost.jpg"></a><br />
<span class="booktitle">The dream fulfilled </span>
</span></div>
<div class="thumbnail"><a class="category" id="enchanterorwonde00mineiala" href="djvu/enchanterorwonde00mineiala.djvu"><img class="bookcover" src="covers/enchanterorwonde00mineiala.jpg"></a><br />
<span class="booktitle">The enchanter, or, Wonderful story teller </span>
</span></div>
<div class="thumbnail"><a class="category" id="endlessstoryothe00higg" href="djvu/endlessstoryothe00higg.djvu"><img class="bookcover" src="covers/endlessstoryothe00higg.jpg"></a><br />
<span class="booktitle">The endless story, and other Oriental tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="fairyofsnows00finn" href="djvu/fairyofsnows00finn.djvu"><img class="bookcover" src="covers/fairyofsnows00finn.jpg"></a><br />
<span class="booktitle">The fairy of the snows </span>
</span></div>
<div class="thumbnail"><a class="category" id="favoritestoryboo00arnoiala" href="djvu/favoritestoryboo00arnoiala.djvu"><img class="bookcover" src="covers/favoritestoryboo00arnoiala.jpg"></a><br />
<span class="booktitle">The favorite story book, or, Pleasing sketches </span>
</span></div>
<div class="thumbnail"><a class="category" id="firstlittlepetbo00fanniala" href="djvu/firstlittlepetbo00fanniala.djvu"><img class="bookcover" src="covers/firstlittlepetbo00fanniala.jpg"></a><br />
<span class="booktitle">The first little pet book, with ten </span>
</span></div>
<div class="thumbnail"><a class="category" id="forceofexampleor00kirkiala" href="djvu/forceofexampleor00kirkiala.djvu"><img class="bookcover" src="covers/forceofexampleor00kirkiala.jpg"></a><br />
<span class="booktitle">The Force of example, or, The history </span>
</span></div>
<div class="thumbnail"><a class="category" id="fortunatedays00gate" href="djvu/fortunatedays00gate.djvu"><img class="bookcover" src="covers/fortunatedays00gate.jpg"></a><br />
<span class="booktitle">The fortunate days </span>
</span></div>
<div class="thumbnail"><a class="category" id="foursisterspatie00harr" href="djvu/foursisterspatie00harr.djvu"><img class="bookcover" src="covers/foursisterspatie00harr.jpg"></a><br />
<span class="booktitle">The four sisters </span>
</span></div>
<div class="thumbnail"><a class="category" id="giantscissors00john2" href="djvu/giantscissors00john2.djvu"><img class="bookcover" src="covers/giantscissors00john2.jpg"></a><br />
<span class="booktitle">The giant scissors </span>
</span></div>
<div class="thumbnail"><a class="category" id="giftstorybookors00dame" href="djvu/giftstorybookors00dame.djvu"><img class="bookcover" src="covers/giftstorybookors00dame.jpg"></a><br />
<span class="booktitle">The Gift story book, or, Short tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="girlscoutpioneer00gari" href="djvu/girlscoutpioneer00gari.djvu"><img class="bookcover" src="covers/girlscoutpioneer00gari.jpg"></a><br />
<span class="booktitle">The girl scout pioneers; or, Winning the </span>
</span></div>
<div class="thumbnail"><a class="category" id="girlscoutsatseac00gari" href="djvu/girlscoutsatseac00gari.djvu"><img class="bookcover" src="covers/girlscoutsatseac00gari.jpg"></a><br />
<span class="booktitle">The girl scouts at Sea Crest </span>
</span></div>
<div class="thumbnail"><a class="category" id="girlsstorybook00woodiala" href="djvu/girlsstorybook00woodiala.djvu"><img class="bookcover" src="covers/girlsstorybook00woodiala.jpg"></a><br />
<span class="booktitle">The girl's story book </span>
</span></div>
<div class="thumbnail"><a class="category" id="godmotherstale00sempiala" href="djvu/godmotherstale00sempiala.djvu"><img class="bookcover" src="covers/godmotherstale00sempiala.jpg"></a><br />
<span class="booktitle">The godmother's tales </span>
</span></div>
<div class="thumbnail"><a class="category" id="goldengiftbookfo00weiriala" href="djvu/goldengiftbookfo00weiriala.djvu"><img class="bookcover" src="covers/goldengiftbookfo00weiriala.jpg"></a><br />
<span class="booktitle">The Golden gift; a book for the </span>
</span></div>
<div class="thumbnail"><a class="category" id="goldenpresentgif00thayiala" href="djvu/goldenpresentgif00thayiala.djvu"><img class="bookcover" src="covers/goldenpresentgif00thayiala.jpg"></a><br />
<span class="booktitle">The golden present </span>
</span></div>
<div class="thumbnail"><a class="category" id="goldenpresentcon00yorkiala" href="djvu/goldenpresentcon00yorkiala.djvu"><img class="bookcover" src="covers/goldenpresentcon00yorkiala.jpg"></a><br />
<span class="booktitle">The Golden present </span>
</span></div>
<div class="thumbnail"><a class="category" id="goodboygirlslott00londiala" href="djvu/goodboygirlslott00londiala.djvu"><img class="bookcover" src="covers/goodboygirlslott00londiala.jpg"></a><br />
<span class="booktitle">The Good boy and girl's lottery; all </span>
</span></div>
<div class="thumbnail"><a class="category" id="governessoreveni00londiala" href="djvu/governessoreveni00londiala.djvu"><img class="bookcover" src="covers/governessoreveni00londiala.jpg"></a><br />
<span class="booktitle">The Governess, or, Evening amusements at a </span>
</span></div>
<div class="thumbnail"><a class="category" id="grammarschoolboy00hanc" href="djvu/grammarschoolboy00hanc.djvu"><img class="bookcover" src="covers/grammarschoolboy00hanc.jpg"></a><br />
<span class="booktitle">The grammar school boys in summer athletics </span>
</span></div>
<div class="thumbnail"><a class="category" id="hatchupsofmemysc00martiala" href="djvu/hatchupsofmemysc00martiala.djvu"><img class="bookcover" src="covers/hatchupsofmemysc00martiala.jpg"></a><br />
<span class="booktitle">The hatchups of me and my school-fellows </span>
</span></div>
<div class="thumbnail"><a class="category" id="historyofmoreper00londiala" href="djvu/historyofmoreper00londiala.djvu"><img class="bookcover" src="covers/historyofmoreper00londiala.jpg"></a><br />
<span class="booktitle">The History of more persons than one, </span>
</span></div>
<div class="thumbnail"><a class="category" id="historyofsolomon00londiala" href="djvu/historyofsolomon00londiala.djvu"><img class="bookcover" src="covers/historyofsolomon00londiala.jpg"></a><br />
<span class="booktitle">The History of Solomon Serious, and his </span>
</span></div>
<div class="thumbnail"><a class="category" id="holidayrewardort00ventiala" href="djvu/holidayrewardort00ventiala.djvu"><img class="bookcover" src="covers/holidayrewardort00ventiala.jpg"></a><br />
<span class="booktitle">The holiday reward, or, Tales to instruct </span>
</span></div>
<div class="thumbnail"><a class="category" id="homestorybook00philiala" href="djvu/homestorybook00philiala.djvu"><img class="bookcover" src="covers/homestorybook00philiala.jpg"></a><br />
<span class="booktitle">The home story book </span>
</span></div>
<div class="thumbnail"><a class="category" id="houseonhillorsto00grea" href="djvu/houseonhillorsto00grea.djvu"><img class="bookcover" src="covers/houseonhillorsto00grea.jpg"></a><br />
<span class="booktitle">The house on the hill; or, Stories </span>
</span></div>
<div class="thumbnail"><a class="category" id="icemaiden00andeiala" href="djvu/icemaiden00andeiala.djvu"><img class="bookcover" src="covers/icemaiden00andeiala.jpg"></a><br />
<span class="booktitle">The ice-maiden; </span>
</span></div>
<div class="thumbnail"><a class="category" id="ivywreath00hugh" href="djvu/ivywreath00hugh.djvu"><img class="bookcover" src="covers/ivywreath00hugh.jpg"></a><br />
<span class="booktitle">The ivy wreath </span>
</span></div>
<div class="thumbnail"><a class="category" id="ivywreath00hughiala" href="djvu/ivywreath00hughiala.djvu"><img class="bookcover" src="covers/ivywreath00hughiala.jpg"></a><br />
<span class="booktitle">The ivy wreath </span>
</span></div>
<div class="thumbnail"><a class="category" id="juvenilemirrorco00londiala" href="djvu/juvenilemirrorco00londiala.djvu"><img class="bookcover" src="covers/juvenilemirrorco00londiala.jpg"></a><br />
<span class="booktitle">The Juvenile mirror </span>
</span></div>
<div class="thumbnail"><a class="category" id="juvenilescrapboo00bouiiala" href="djvu/juvenilescrapboo00bouiiala.djvu"><img class="bookcover" src="covers/juvenilescrapboo00bouiiala.jpg"></a><br />
<span class="booktitle">The juvenile scrap-book and youth's annual </span>
</span></div>
<div class="thumbnail"><a class="category" id="keepsakepictureb00londiala" href="djvu/keepsakepictureb00londiala.djvu"><img class="bookcover" src="covers/keepsakepictureb00londiala.jpg"></a><br />
<span class="booktitle">The Keepsake picture book </span>
</span></div>
<div class="thumbnail"><a class="category" id="lifeadventuresof00goodiala" href="djvu/lifeadventuresof00goodiala.djvu"><img class="bookcover" src="covers/lifeadventuresof00goodiala.jpg"></a><br />
<span class="booktitle">The life and adventures of Thomas Titmouse </span>
</span></div>
<div class="thumbnail"><a class="category" id="lilliputianlibra01gulliala" href="djvu/lilliputianlibra01gulliala.djvu"><img class="bookcover" src="covers/lilliputianlibra01gulliala.jpg"></a><br />
<span class="booktitle">The Lilliputian library, or, Gullivers museum, in </span>
</span></div>
<div class="thumbnail"><a class="category" id="lilliputianlibra02gulliala" href="djvu/lilliputianlibra02gulliala.djvu"><img class="bookcover" src="covers/lilliputianlibra02gulliala.jpg"></a><br />
<span class="booktitle">The Lilliputian library, or, Gullivers museum, in </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlegirlshouse00mitfiala" href="djvu/littlegirlshouse00mitfiala.djvu"><img class="bookcover" src="covers/littlegirlshouse00mitfiala.jpg"></a><br />
<span class="booktitle">The little girl's housekeeping </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlelouvreorbo00abboiala" href="djvu/littlelouvreorbo00abboiala.djvu"><img class="bookcover" src="covers/littlelouvreorbo00abboiala.jpg"></a><br />
<span class="booktitle">The little Louvre; or, The boys' and </span>
</span></div>
<div class="thumbnail"><a class="category" id="littlenightcaple00fanniala" href="djvu/littlenightcaple00fanniala.djvu"><img class="bookcover" src="covers/littlenightcaple00fanniala.jpg"></a><br />
<span class="booktitle">The little nightcap letters </span>
</span></div>
<div class="thumbnail"><a class="category" id="lossrecoveryothe00troyiala" href="djvu/lossrecoveryothe00troyiala.djvu"><img class="bookcover" src="covers/lossrecoveryothe00troyiala.jpg"></a><br />
<span class="booktitle">The loss, the recovery </span>
</span></div>
<div class="thumbnail"><a class="category" id="lostlegendsofnur00clariala" href="djvu/lostlegendsofnur00clariala.djvu"><img class="bookcover" src="covers/lostlegendsofnur00clariala.jpg"></a><br />
<span class="booktitle">The lost legends of the nursery songs </span>
</span></div>
<div class="thumbnail"><a class="category" id="magnetstoriesfor00frisiala" href="djvu/magnetstoriesfor00frisiala.djvu"><img class="bookcover" src="covers/magnetstoriesfor00frisiala.jpg"></a><br />
<span class="booktitle">The magnet stories for summer days and </span>
</span></div>
<div class="thumbnail"><a class="category" id="medleymedley00portiala" href="djvu/medleymedley00portiala.djvu"><img class="bookcover" src="covers/medleymedley00portiala.jpg"></a><br />
<span class="booktitle">The medley </span>
</span></div>
<div class="thumbnail"><a class="category" id="medleysamuelwood00newyiala" href="djvu/medleysamuelwood00newyiala.djvu"><img class="bookcover" src="covers/medleysamuelwood00newyiala.jpg"></a><br />
<span class="booktitle">The Medley </span>
</span></div>
<div class="thumbnail"><a class="category" id="medleymedley00newyiala" href="djvu/medleymedley00newyiala.djvu"><img class="bookcover" src="covers/medleymedley00newyiala.jpg"></a><br />
<span class="booktitle">The medley </span>
</span></div>
<div class="thumbnail"><a class="category" id="medleyorstoriesf00hamiiala" href="djvu/medleyorstoriesf00hamiiala.djvu"><img class="bookcover" src="covers/medleyorstoriesf00hamiiala.jpg"></a><br />
<span class="booktitle">The medley, or, Stories for Susan </span>
</span></div>
<div class="thumbnail"><a class="category" id="mothersgiftorpre00halliala" href="djvu/mothersgiftorpre00halliala.djvu"><img class="bookcover" src="covers/mothersgiftorpre00halliala.jpg"></a><br />
<span class="booktitle">The Mother's gift, or, A present for </span>
</span></div>
<div class="thumbnail"><a class="category" id="motorboatclubatn00hanc" href="djvu/motorboatclubatn00hanc.djvu"><img class="bookcover" src="covers/motorboatclubatn00hanc.jpg"></a><br />
<span class="booktitle">The motor boat club at Nantucket; or, </span>
</span></div>
<div class="thumbnail"><a class="category" id="orphanshomemitte00fann" href="djvu/orphanshomemitte00fann.djvu"><img class="bookcover" src="covers/orphanshomemitte00fann.jpg"></a><br />
<span class="booktitle">The orphan's home mittens; and George's account </span>
</span></div>
<div class="thumbnail"><a class="category" id="outdoorgirlsatbl00hope" href="djvu/outdoorgirlsatbl00hope.djvu"><img class="bookcover" src="covers/outdoorgirlsatbl00hope.jpg"></a><br />
<span class="booktitle">The Outdoor girls at Bluff Point; or, </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant03edgeiala" href="djvu/parentsassistant03edgeiala.djvu"><img class="bookcover" src="covers/parentsassistant03edgeiala.jpg"></a><br />
<span class="booktitle">The parent's assistant, or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant05edgeiala" href="djvu/parentsassistant05edgeiala.djvu"><img class="bookcover" src="covers/parentsassistant05edgeiala.jpg"></a><br />
<span class="booktitle">The parent's assistant, or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant01edgeiala" href="djvu/parentsassistant01edgeiala.djvu"><img class="bookcover" src="covers/parentsassistant01edgeiala.jpg"></a><br />
<span class="booktitle">The parent's assistant, or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant02edgeiala" href="djvu/parentsassistant02edgeiala.djvu"><img class="bookcover" src="covers/parentsassistant02edgeiala.jpg"></a><br />
<span class="booktitle">The parent's assistant, or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant04edgeiala" href="djvu/parentsassistant04edgeiala.djvu"><img class="bookcover" src="covers/parentsassistant04edgeiala.jpg"></a><br />
<span class="booktitle">The parent's assistant, or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant06edgeiala" href="djvu/parentsassistant06edgeiala.djvu"><img class="bookcover" src="covers/parentsassistant06edgeiala.jpg"></a><br />
<span class="booktitle">The parent's assistant, or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant02edge" href="djvu/parentsassistant02edge.djvu"><img class="bookcover" src="covers/parentsassistant02edge.jpg"></a><br />
<span class="booktitle">The parent's assistant; or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsassistant01edge" href="djvu/parentsassistant01edge.djvu"><img class="bookcover" src="covers/parentsassistant01edge.jpg"></a><br />
<span class="booktitle">The parent's assistant; or, Stories for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsofferingo01barniala" href="djvu/parentsofferingo01barniala.djvu"><img class="bookcover" src="covers/parentsofferingo01barniala.jpg"></a><br />
<span class="booktitle">The parent's offering, or, Tales for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="parentsofferingo02barniala" href="djvu/parentsofferingo02barniala.djvu"><img class="bookcover" src="covers/parentsofferingo02barniala.jpg"></a><br />
<span class="booktitle">The parent's offering, or, Tales for children </span>
</span></div>
<div class="thumbnail"><a class="category" id="pictureexhibiti00johniala" href="djvu/pictureexhibiti00johniala.djvu"><img class="bookcover" src="covers/pictureexhibiti00johniala.jpg"></a><br />
<span class="booktitle">The picture exhibition </span>
</span></div>
<div class="thumbnail"><a class="category" id="playmateapleasan00cundiala" href="djvu/playmateapleasan00cundiala.djvu"><img class="bookcover" src="covers/playmateapleasan00cundiala.jpg"></a><br />
<span class="booktitle">The playmate </span>
</span></div>
<div class="thumbnail"><a class="category" id="playmatepleasant00cundiala" href="djvu/playmatepleasant00cundiala.djvu"><img class="bookcover" src="covers/playmatepleasant00cundiala.jpg"></a><br />
<span class="booktitle">The playmate </span>
</span></div>
<div class="thumbnail"><a class="category" id="powerofkindnesso00arthiala" href="djvu/powerofkindnesso00arthiala.djvu"><img class="bookcover" src="covers/powerofkindnesso00arthiala.jpg"></a><br />
<span class="booktitle">The power of kindness </span>