-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathabout.com1.html
More file actions
1320 lines (1195 loc) · 89.9 KB
/
Copy pathabout.com1.html
File metadata and controls
1320 lines (1195 loc) · 89.9 KB
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>
<html class="no-js"
data-ab="99,99,99,99"
data-articleId="2f53fe24dc0064e02f005f51"
data-ch="travel"
data-gs="bandb"
data-template-type="FLEXIBLEARTICLE" itemscope itemtype="http://schema.org/Article">
<!--
<globe-environment environment="prod" application="globe" dataCenter="sj" serverName="sjglobe5" />
<globe-server version="1.17.4" vendor="" title="Globe Server" />
<globe-resources version="1.17.5" loadStartTime="1419289077537" loadTimeTaken="512" />
-->
<head>
<script src="//www.googletagservices.com/tag/js/gpt.js" type="text/javascript" async defer></script>
<link rel="stylesheet" href="http://j.about.com/css/1.17.5/cache/eNptU01PwzAM_UOgSnCAKyCQkAYc-Dq7iVeseUllu93Kr6dj48PJDm2SZ-c5fraDahNxCQNbI6hoJ2FGwgekhKwNtHmw0z58o9oLGRbgr6sJjMilr0d_Ih2sJbzMydQhNvVYenVCscTawSwnLdhk7RFlaB0Q5oCYrGQbjJiM0N8mdEeI2nS9XcXXRBXDzigQmdKqyrLj3AI_wtgkGFsQZ8wjCsPkk5sWlGYt96tPQHWRIaKUQdag-98dbTEeNzmUc1hhvDi7PD33muVAwI1-gOD1XuVKfEGIQYZ1q__3VdFrptvtLH_Eqpwxh2E9F-aFjKv6B5KwIP3blA4bih1aFT-AYZdl2l3xD0N8yOKFTbhRRjP05ekp3dv7N7_vNcbtlRgF9jQ9dHWbC46Em2cDqaWETwB5yxSqtHe9VD19yRMlh4wUMesxza6LVsNtz3PaN4cBLrSSPCiyD4Zgg2B8yT2F4_5P-_atBzvPSh6WY7Myf5h0l_MXAtK7QQ.min.css" type="text/css">
<!--[if lte IE 8 ]>
<link rel="stylesheet" href="http://j.about.com/css/1.17.5/default/ie8.min.css" type="text/css">
<script src="http://j.about.com/js/1.17.5/default/ie8.min.js"></script>
<![endif]-->
<!--[if IE 9 ]>
<link rel="stylesheet" href="http://j.about.com/css/1.17.5/default/ie9.min.css" type="text/css">
<![endif]-->
<link rel="shortcut icon" href="http://j.about.com/icons/1.17.5/travel/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://j.about.com/icons/1.17.5/travel/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="http://j.about.com/icons/1.17.5/travel/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="http://j.about.com/icons/1.17.5/travel/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="http://j.about.com/icons/1.17.5/travel/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="http://j.about.com/icons/1.17.5/travel/apple-touch-icon-152x152.png">
<meta name="msapplication-TileColor" content="#F4F4F4"/>
<meta name="msapplication-TileImage" content="http://j.about.com/icons/1.17.5/travel/mstile-144x144.png">
<meta name="msapplication-square70x70logo" content="http://j.about.com/icons/1.17.5/travel/mstile-70x70.png">
<meta name="msapplication-square150x150logo" content="http://j.about.com/icons/1.17.5/travel/mstile-150x150.png">
<meta name="msapplication-square310x310logo" content="http://j.about.com/icons/1.17.5/travel/mstile-310x310.png">
<meta name="msapplication-wide310x150logo" content="http://j.about.com/icons/1.17.5/travel/mstile-310x150.png">
<!-- BEGIN Krux Control Tag for "about.com" -->
<!-- Source: /snippet/controltag?confid=Itttdt64&site=about.com&edit=1 -->
<script class="kxct" data-id="Itttdt64" data-timing="async" data-version="1.9" type="text/javascript">
((Krux = function() {
Krux.q.push(arguments)
}).q = []);
(function() {
var k = document.createElement('script');
k.type = 'text/javascript';
k.async = true;
var m, src = (m = location.href.match(/\bkxsrc=([^&]+)/)) &&
decodeURIComponent(m[1]);
k.src = /^https?:\/\/([^\/]+\.)?krxd\.net(:\d{1,5})?\//i.test(src) ?
src : src === "disable" ? "" : (location.protocol === "https:" ?
"https:" : "http:") +
"//cdn.krxd.net/controltag?confid=Itttdt64";
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(k, s);
}());
</script>
<!-- END Krux Controltag -->
<script class="kxint" type="text/javascript">
window.Krux || ((Krux = function() {
Krux.q.push(arguments);
}).q = []);
(function() {
function retrieve(n) {
var m, k = 'kx' + n;
if (window.localStorage) {
return window.localStorage[k] || "";
} else if (navigator.cookieEnabled) {
m = document.cookie.match(k + '=([^;]*)');
return (m && unescape(m[1])) || "";
} else {
return '';
}
}
Krux.user = retrieve('user');
Krux.segments = retrieve('segs') ? retrieve('segs').split(',') : [];
})();
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="robots" content="NOODP, NOYDIR">
<link rel="canonical" href="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm" />
<title>Galena, IL: A B&B Kinda Town</title>
<meta name="description" content="As the &ldquo;B&amp;B Capital of the Midwest&rdquo;, Galena has more than its fair share of charming bed and breakfasts. Most of them are meticulously restored 19th-century mansions that dot the hills surrounding the town and are within close proximity to downtown." itemprop="description">
<meta name="articleSection" content="Travel" itemprop="articleSection" />
<meta itemprop="name" content="Galena IL is a B&amp;B Kinda Town" />
<!-- Facebook Open Graph Tags aa -->
<meta property="fb:app_id" content="121030274606741" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="About" />
<meta property="og:url" content="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm" />
<meta property="og:title" content="Galena IL is a B&amp;B Kinda Town" />
<meta property="og:description" content="As the &ldquo;B&amp;B Capital of the Midwest&rdquo;, Galena has more than its fair share of charming bed and breakfasts. Most of them are meticulously restored 19th-century mansions that dot the hills surrounding the town and are within close proximity to downtown." />
<meta property="og:image" content="http://0.tqn.com/y/default/autos/S/82876023.jpg" />
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@aboutdotcom" />
<meta name="twitter:title" content="Galena IL is a B&amp;B Kinda Town" />
<meta name="twitter:description" content="As the &ldquo;B&amp;B Capital of the Midwest&rdquo;, Galena has more than its fair share of charming bed and breakfasts. Most of them are meticulously restored 19th-century mansions that dot the hills surrounding the town and are within close proximity to downtown." />
<meta name="twitter:image" content="http://0.tqn.com/y/default/autos/S/82876023.jpg" />
<!-- Pintrest Pins -->
<meta property="article:section" content="Travel" />
<!-- Parse.ly meta information -->
<meta name='parsely-page' content='{"title": "Galena, IL: A B&B Kinda Town","link": "http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm","image_url": "http://0.tqn.com/y/default/autos/R/82876023.jpg","type": "post","post_id": "2f53fe24dc0064e02f005f51","pub_date": "","section": "Travel","authors": ["Michael Franco"],"tags": ["template65","bandb"]}' /><meta name="viewport" content="width=device-width, initial-scale=1.0"> <script type="text/javascript" src="http://j.about.com/js/1.17.5/cache/eNrLKtZPSU1LLM0p0c_JTNJPTMovLXEPCNHJQhXPzU9JLcrLrCpCl0jOz8_OTC1GFsYiBFJZWpKZk1kClAAAwGgrfw.min.js"></script>
<script type="text/javascript">
//Set mpt and GMCID cookies
setCookieValue();
Abt.GPT.initGPT({
site: 'bandb',
channel: 'travel',
articleId: '2f53fe24dc0064e02f005f51',
templateId: '65',
articleStamp: '',
pageCount: 'null',
hgt: '' + window.screen.height,
isMobile: false,
singleRequest: false,
slots: [
{'id':'leaderboard', 'pos':'atf', 'sizes':[[728, 90], [970, 250], [970, 90], [1, 1]], 'type':'leaderboard', 'priority':'1'},
{'id':'billboard', 'pos':'atf', 'sizes':[[300, 250], [300, 600], [300, 1050]], 'type':'billboard', 'priority':'5'},
{'id':'billboard2', 'pos':'btf1', 'sizes':[[300, 250], [300, 251], [2, 1]], 'type':'billboard', 'priority':'99'},
{'id':'billboard3', 'pos':'btf2', 'sizes':[[300, 250], [300, 252], [3, 1]], 'type':'billboard', 'priority':'99'},
{'id':'billboard4', 'pos':'btf3', 'sizes':[[300, 250], [300, 253], [4, 1]], 'type':'billboard', 'priority':'99'}
]
});
// analytics/404.ftl
// analytics/googleTagManager.ftl
var dataLayer = dataLayer || [];
// AB Testing
dataLayer.push({
abTests: [{
testName:"relatedClickabilityTest",
bucketDescription:"mongo bucket",
bucketName:"mongo",
bucketTrackingId:"99",
bucketValue:2
},{
testName:"lock728Test",
bucketDescription:"in test, lock 728 after fixed mast appears",
bucketName:"lock728",
bucketTrackingId:"99",
bucketValue:2
},{
testName:"billboard4Test",
bucketDescription:"enabled",
bucketName:"enabled",
bucketTrackingId:"99",
bucketValue:1
},{
testName:"seoDateStampTest",
bucketDescription:"enabled",
bucketName:"enabled",
bucketTrackingId:"99",
bucketValue:1
}]
});
//Environment Tracking
var envData = {
environment : {
environment : "prod",
application : "globe",
dataCenter : "sj",
serverName : "sjglobe5"
},
server : {
version : "1.17.4",
vendor : "",
title : "Globe Server"
},
resources : {
version : "1.17.5",
loadStartTime : "1419289077537",
loadTimeTaken : "512"
},
client : {
browserUA : navigator.userAgent,
serverUA : "newspaper/0.1.2"
}
};
dataLayer.push({ envData: envData });
if ((typeof opt_testid !== 'undefined') && (opt_testid !== '')){
docCookies.setItem("opt_testid", opt_testid, null, "/", '.about.com');
} else if (docCookies.getItem('opt_testid')) {
var opt_testid = docCookies.getItem('opt_testid');
} else {
var opt_testid = '';
}
var ch = 'travel',
gs = 'bandb',
zccnt = '5084',
zGAst = 'Galena IL is a B&B Kinda Town',
zAth = '112305',
zTt = '65',
zGAtg ='Articles',
google_ad_channel = 'primedia_bandb tt' + zTt,
cat0 = 'bylocation/',
cat1 = 'visitingmwus/',
cat2 = 'illinois/',
google_ad_client = google_ad_client_window = (docCookies.getItem('mpt') == 'A1') ? 'ca-aj-about-sem' : 'ca-aj-about-premium';
(function() {
var askoc = docCookies.getItem('askoc'),
mptCookie = docCookies.getItem('mpt');
google_ad_channel += ((typeof askoc !== 'undefined' && askoc !== null) ? ' '+askoc+' semd' : '');
google_ad_channel += ((opt_testid !== 'undefined' && opt_testid !== null) ? (' test' + opt_testid) : '');
google_ad_channel += ((typeof mptCookie !== 'undefined' && mptCookie !== null) ? ' ' + mptCookie : '');
}());
var ab_tracking_ids = [];
ab_tracking_ids.push("99");
ab_tracking_ids.push("99");
ab_tracking_ids.push("99");
ab_tracking_ids.push("99");
if (ab_tracking_ids.length) {
ab_tracking_ids.forEach(function (id) {
if (id !== 'undefined' && id !== null) {
google_ad_channel += ' test' + id;
}
});
}
var google_ad_channel_window = google_ad_channel;
if(docCookies.keys().length > 0){
var
zBsT = docCookies.getItem('zBsT'),
zBT = docCookies.getItem('zBT'),
zBTr = docCookies.getItem('zBTr'),
mpt = docCookies.getItem('mpt');
}
var zNative;
zNative = 0;
</script>
</head>
<body>
<!-- Google Tag Manager (Travel) -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-KCNR93" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KCNR93');</script>
<!-- End Google Tag Manager -->
<nav class="navbar">
<div class="container group visible-md">
<a href="http://www.about.com/" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="aboutCom" data-ordinal="1" source="mainsitehomepage" class="navbar-brand" >About.com</a>
<ul class="navbar-menu pull-left">
<li class="navbar-submenu inactive bg-food" data-dir-name="food" data-base-url="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm">
<a href="http://www.about.com/food/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="1" class="muted" data-source="ChannelHomepage_All" > Food
</a> <div class="navbar-submenu-container bg-food">
<div class="container pane">
<div class="row">
<div class="col col-3">
<ul class="navbar-submenu-list">
<li>
<a href="http://southernfood.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="1" class="light-text-food" data-source="SitesChannel_Curated" >Southern Food</a>
</li>
<li>
<a href="http://bbq.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="2" class="light-text-food" data-source="SitesChannel_Curated" >Barbecues & Grilling</a>
</li>
<li>
<a href="http://homecooking.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="3" class="light-text-food" data-source="SitesChannel_Curated" >Home Cooking</a>
</li>
<li>
<a href="http://cocktails.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="4" class="light-text-food" data-source="SitesChannel_Curated" >Cocktails</a>
</li>
<li>
<a href="http://culinaryarts.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="5" class="light-text-food" data-source="SitesChannel_Curated" >Culinary Arts</a>
</li>
<li>
<a href="http://busycooks.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="6" class="light-text-food" data-source="SitesChannel_Curated" >Busy Cooks</a>
</li>
<li>
<a href="http://vegetarian.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="7" class="light-text-food" data-source="SitesChannel_Curated" >Vegetarian Food</a>
</li>
<a href="http://www.about.com/food" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="site.displayName" data-ordinal="8" class="light-text-food" >More about food »</a>
</ul>
</div>
<div class="col col-12">
<div class="navbar-submenu-featured" data-id="globalNavbarFeaturedComponent">
<div id="cssLoader">
<div id="cssLoader1" class="cssLoader"></div>
<div id="cssLoader2" class="cssLoader"></div>
<div id="cssLoader3" class="cssLoader"></div>
</div> </div>
</div> </div>
</div>
</div>
</li>
<li class="navbar-submenu inactive bg-health" data-dir-name="health" data-base-url="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm">
<a href="http://www.about.com/health/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="2" class="muted" data-source="ChannelHomepage_All" > Health
</a> <div class="navbar-submenu-container bg-health">
<div class="container pane">
<div class="row">
<div class="col col-3">
<ul class="navbar-submenu-list">
<li>
<a href="http://arthritis.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="9" class="light-text-health" data-source="SitesChannel_Curated" >Arthritis & Joint Conditions</a>
</li>
<li>
<a href="http://coldflu.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="10" class="light-text-health" data-source="SitesChannel_Curated" >Cold & Flu</a>
</li>
<li>
<a href="http://diabetes.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="11" class="light-text-health" data-source="SitesChannel_Curated" >Type 2 Diabetes</a>
</li>
<li>
<a href="http://weightloss.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="12" class="light-text-health" data-source="SitesChannel_Curated" >Weight Loss</a>
</li>
<li>
<a href="http://cholesterol.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="13" class="light-text-health" data-source="SitesChannel_Curated" >Cholesterol</a>
</li>
<li>
<a href="http://pregnancy.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="14" class="light-text-health" data-source="SitesChannel_Curated" >Pregnancy & Childbirth</a>
</li>
<li>
<a href="http://pediatrics.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="15" class="light-text-health" data-source="SitesChannel_Curated" >Pediatrics</a>
</li>
<a href="http://www.about.com/health" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="site.displayName" data-ordinal="16" class="light-text-health" >More about health »</a>
</ul>
</div>
<div class="col col-12">
<div class="navbar-submenu-featured" data-id="globalNavbarFeaturedComponent">
<div id="cssLoader">
<div id="cssLoader1" class="cssLoader"></div>
<div id="cssLoader2" class="cssLoader"></div>
<div id="cssLoader3" class="cssLoader"></div>
</div> </div>
</div> </div>
</div>
</div>
</li>
<li class="navbar-submenu inactive bg-homegarden" data-dir-name="homegarden" data-base-url="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm">
<a href="http://www.about.com/homegarden/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="3" class="muted" data-source="ChannelHomepage_All" > Home
</a> <div class="navbar-submenu-container bg-homegarden">
<div class="container pane">
<div class="row">
<div class="col col-3">
<ul class="navbar-submenu-list">
<li>
<a href="http://interiordec.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="17" class="light-text-homegarden" data-source="SitesChannel_Curated" >Interior Decorating</a>
</li>
<li>
<a href="http://homerenovations.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="18" class="light-text-homegarden" data-source="SitesChannel_Curated" >Home Renovations</a>
</li>
<li>
<a href="http://apartments.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="19" class="light-text-homegarden" data-source="SitesChannel_Curated" >Apartment Living/Rental</a>
</li>
<li>
<a href="http://contests.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="20" class="light-text-homegarden" data-source="SitesChannel_Curated" >Contests & Sweepstakes</a>
</li>
<li>
<a href="http://homerepair.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="21" class="light-text-homegarden" data-source="SitesChannel_Curated" >Home Repair</a>
</li>
<li>
<a href="http://freebies.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="22" class="light-text-homegarden" data-source="SitesChannel_Curated" >Freebies</a>
</li>
<li>
<a href="http://moving.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="23" class="light-text-homegarden" data-source="SitesChannel_Curated" >Moving</a>
</li>
<a href="http://www.about.com/homegarden" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="site.displayName" data-ordinal="24" class="light-text-homegarden" >More about home »</a>
</ul>
</div>
<div class="col col-12">
<div class="navbar-submenu-featured" data-id="globalNavbarFeaturedComponent">
<div id="cssLoader">
<div id="cssLoader1" class="cssLoader"></div>
<div id="cssLoader2" class="cssLoader"></div>
<div id="cssLoader3" class="cssLoader"></div>
</div> </div>
</div> </div>
</div>
</div>
</li>
<li class="navbar-submenu inactive bg-money" data-dir-name="money" data-base-url="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm">
<a href="http://www.about.com/money/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="4" class="muted" data-source="ChannelHomepage_All" > Money
</a> <div class="navbar-submenu-container bg-money">
<div class="container pane">
<div class="row">
<div class="col col-3">
<ul class="navbar-submenu-list">
<li>
<a href="http://inventors.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="25" class="light-text-money" data-source="SitesChannel_Curated" >Inventors</a>
</li>
<li>
<a href="http://frugalliving.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="26" class="light-text-money" data-source="SitesChannel_Curated" >Frugal Living</a>
</li>
<li>
<a href="http://humanresources.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="27" class="light-text-money" data-source="SitesChannel_Curated" >Human Resources</a>
</li>
<li>
<a href="http://taxes.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="28" class="light-text-money" data-source="SitesChannel_Curated" >Tax Planning: U.S.</a>
</li>
<li>
<a href="http://beginnersinvest.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="29" class="light-text-money" data-source="SitesChannel_Curated" >Investing for Beginners</a>
</li>
<li>
<a href="http://sbinfocanada.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="30" class="light-text-money" data-source="SitesChannel_Curated" >Small Business: Canada</a>
</li>
<li>
<a href="http://banking.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="31" class="light-text-money" data-source="SitesChannel_Curated" >Banking/Loans</a>
</li>
<a href="http://www.about.com/money" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="site.displayName" data-ordinal="32" class="light-text-money" >More about money »</a>
</ul>
</div>
<div class="col col-12">
<div class="navbar-submenu-featured" data-id="globalNavbarFeaturedComponent">
<div id="cssLoader">
<div id="cssLoader1" class="cssLoader"></div>
<div id="cssLoader2" class="cssLoader"></div>
<div id="cssLoader3" class="cssLoader"></div>
</div> </div>
</div> </div>
</div>
</div>
</li>
<li class="navbar-submenu inactive bg-style" data-dir-name="style" data-base-url="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm">
<a href="http://www.about.com/style/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="5" class="muted" data-source="ChannelHomepage_All" > Style
</a> <div class="navbar-submenu-container bg-style">
<div class="container pane">
<div class="row">
<div class="col col-3">
<ul class="navbar-submenu-list">
<li>
<a href="http://beauty.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="33" class="light-text-style" data-source="SitesChannel_Curated" >Beauty</a>
</li>
<li>
<a href="http://womenshair.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="34" class="light-text-style" data-source="SitesChannel_Curated" >Women's Hairstyles</a>
</li>
<li>
<a href="http://budgetstyle.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="35" class="light-text-style" data-source="SitesChannel_Curated" >Budget Style</a>
</li>
<li>
<a href="http://celebritystyle.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="36" class="light-text-style" data-source="SitesChannel_Curated" >Celebrity Style</a>
</li>
<li>
<a href="http://jewelry.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="37" class="light-text-style" data-source="SitesChannel_Curated" >Jewelry</a>
</li>
<li>
<a href="http://shoes.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="38" class="light-text-style" data-source="SitesChannel_Curated" >Shoes</a>
</li>
<li>
<a href="http://weddings.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="39" class="light-text-style" data-source="SitesChannel_Curated" >Weddings</a>
</li>
<a href="http://www.about.com/style" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="site.displayName" data-ordinal="40" class="light-text-style" >More about style »</a>
</ul>
</div>
<div class="col col-12">
<div class="navbar-submenu-featured" data-id="globalNavbarFeaturedComponent">
<div id="cssLoader">
<div id="cssLoader1" class="cssLoader"></div>
<div id="cssLoader2" class="cssLoader"></div>
<div id="cssLoader3" class="cssLoader"></div>
</div> </div>
</div> </div>
</div>
</div>
</li>
<li class="navbar-submenu inactive bg-compute" data-dir-name="compute" data-base-url="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm">
<a href="http://www.about.com/compute/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="6" class="muted" data-source="ChannelHomepage_All" > Tech
</a> <div class="navbar-submenu-container bg-compute">
<div class="container pane">
<div class="row">
<div class="col col-3">
<ul class="navbar-submenu-list">
<li>
<a href="http://ipad.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="41" class="light-text-compute" data-source="SitesChannel_Curated" >iPad</a>
</li>
<li>
<a href="http://ipod.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="42" class="light-text-compute" data-source="SitesChannel_Curated" >iPhone/iPod</a>
</li>
<li>
<a href="http://pcsupport.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="43" class="light-text-compute" data-source="SitesChannel_Curated" >PC Support</a>
</li>
<li>
<a href="http://macs.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="44" class="light-text-compute" data-source="SitesChannel_Curated" >Macs</a>
</li>
<li>
<a href="http://windows.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="45" class="light-text-compute" data-source="SitesChannel_Curated" >Windows</a>
</li>
<li>
<a href="http://netforbeginners.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="46" class="light-text-compute" data-source="SitesChannel_Curated" >Internet Basics</a>
</li>
<li>
<a href="http://cameras.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="47" class="light-text-compute" data-source="SitesChannel_Curated" >Cameras</a>
</li>
<a href="http://www.about.com/compute" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="site.displayName" data-ordinal="48" class="light-text-compute" >More about tech »</a>
</ul>
</div>
<div class="col col-12">
<div class="navbar-submenu-featured" data-id="globalNavbarFeaturedComponent">
<div id="cssLoader">
<div id="cssLoader1" class="cssLoader"></div>
<div id="cssLoader2" class="cssLoader"></div>
<div id="cssLoader3" class="cssLoader"></div>
</div> </div>
</div> </div>
</div>
</div>
</li>
<li class="navbar-submenu inactive bg-travel" data-dir-name="travel" data-base-url="http://bandb.about.com/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town.htm">
<a href="http://www.about.com/travel/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="7" class="muted" data-source="ChannelHomepage_All" > Travel
</a> <div class="navbar-submenu-container bg-travel">
<div class="container pane">
<div class="row">
<div class="col col-3">
<ul class="navbar-submenu-list">
<li>
<a href="http://gocalifornia.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="49" class="light-text-travel" data-source="SitesChannel_Curated" >California Travel</a>
</li>
<li>
<a href="http://gonyc.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="50" class="light-text-travel" data-source="SitesChannel_Curated" >New York City Travel</a>
</li>
<li>
<a href="http://govegas.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="51" class="light-text-travel" data-source="SitesChannel_Curated" >Las Vegas Travel</a>
</li>
<li>
<a href="http://gocaribbean.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="52" class="light-text-travel" data-source="SitesChannel_Curated" >Caribbean Travel</a>
</li>
<li>
<a href="http://gohawaii.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="53" class="light-text-travel" data-source="SitesChannel_Curated" >Hawaii Travel</a>
</li>
<li>
<a href="http://cruises.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="54" class="light-text-travel" data-source="SitesChannel_Curated" >Cruises</a>
</li>
<li>
<a href="http://themeparks.about.com/" data-component="globalNavBarComponent" data-source="SitesChannel_Curated" data-type="site.displayName" data-ordinal="55" class="light-text-travel" data-source="SitesChannel_Curated" >Theme Parks</a>
</li>
<a href="http://www.about.com/travel" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="site.displayName" data-ordinal="56" class="light-text-travel" >More about travel »</a>
</ul>
</div>
<div class="col col-12">
<div class="navbar-submenu-featured" data-id="globalNavbarFeaturedComponent">
<div id="cssLoader">
<div id="cssLoader1" class="cssLoader"></div>
<div id="cssLoader2" class="cssLoader"></div>
<div id="cssLoader3" class="cssLoader"></div>
</div> </div>
</div> </div>
</div>
</div>
</li>
<li>
<div class="more pull-left">
More
<span class="arrow arrow-down"></span>
<div class="overlay">
<div class="hover-placeholder"></div>
<div class="arrow arrow-up"></div>
<ul class="navbar-submenu-list">
<li>
<a href="http://www.about.com/autos/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="8" data-source="ChannelHomepage_All" >Autos</a>
</li>
<li>
<a href="http://www.about.com/people/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="9" data-source="ChannelHomepage_All" >Dating & Relationships</a>
</li>
<li>
<a href="http://www.about.com/education/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="10" data-source="ChannelHomepage_All" >Education</a>
</li>
<li>
<a href="http://www.about.com/entertainment/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="11" data-source="ChannelHomepage_All" >Entertainment</a>
</li>
<li>
<a href="http://www.about.com/espanol/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="12" data-source="ChannelHomepage_All" >en Español</a>
</li>
<li>
<a href="http://www.about.com/careers/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="13" data-source="ChannelHomepage_All" >Careers</a>
</li>
<li>
<a href="http://www.about.com/newsissues/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="14" data-source="ChannelHomepage_All" >News & Issues</a>
</li>
<li>
<a href="http://www.about.com/parenting/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="15" data-source="ChannelHomepage_All" >Parenting</a>
</li>
<li>
<a href="http://www.about.com/religion/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="16" data-source="ChannelHomepage_All" >Religion & Spirituality</a>
</li>
<li>
<a href="http://www.about.com/sports/" data-component="globalNavBarComponent" data-source="ChannelHomepage_All" data-type="channel.displayName" data-ordinal="17" data-source="ChannelHomepage_All" >Sports</a>
</li>
</ul>
</div>
</div>
</li>
</ul>
<ul class="navbar-menu navbar-menu-left">
<li class="navbar-video">
<a href="http://video.about.com/" data-component="globalNavBarComponent" data-source="globalNavbar" data-type="videos" data-ordinal="1" class="muted" ><span class="sprite video-small navbar-video-icon"></span>Videos</a>
</li>
</ul>
</div>
</nav>
<header class="mast mast-fixed p-bg " id="mast-fixed">
<div class="container">
<div class="row">
<div class="col col-4">
<a href="http://www.about.com/travel" data-component="mastFixed" data-source="ChannelHomepage_morenav" data-type="channel.logo" data-ordinal="1" source="ChannelHomepage_MoveNav" > <div class="mast-logo pull-left">
<div class="sprite logo-scroll"></div><div class="sprite scroll-travel"></div>
</div>
</a> </div>
<div class="col col-7">
<div class="row">
<div class="col col-7">
<form class="mast-search s-b-col" method="get" action="http://bandb.about.com/sitesearch.htm">
<div class="input-group input-group-plain input-shadow">
<input type="hidden" name="boost" value="3">
<input type="hidden" name="SUName" value="bandb">
<input type="text" name="q" validate="required" data-default="Bed & Breakfasts" data-error-msg="Please enter something to search for." placeholder="Search..." value="">
<div class="input-group-btn">
<button class="btn" type="submit"><span class="sprite search"></span></button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col col-4">
<div class="inactive mast-share share-btns pull-right">
<div id="shareButtonsDocumentLimited" class="share-btns popout">
<div class="heading">Share this</div>
<div class="buttons"><a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons" data-component="shareButtonsLimited" data-source="Social_ShareLimited" data-type="shareFacebook" data-ordinal="1" data-network="facebook" title="Share on Facebook" class="facebook share-btn first" data-pin-do="skipLink" target="_blank" ><span class="sprite facebook"></span><span class="sprite facebook-white"></span>
</a><a href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons&via=aboutdotcom&text=Galena+IL+is+a+B%26amp%3BB+Kinda+Town" data-component="shareButtonsLimited" data-source="Social_ShareLimited" data-type="shareTwitter" data-ordinal="1" data-network="twitter" title="Share on Twitter" class="twitter share-btn" data-pin-do="skipLink" target="_blank" ><span class="sprite twitter"></span><span class="sprite twitter-white"></span>
</a><a href="http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dpinterest%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons&description=Galena+IL+is+a+B%26amp%3BB+Kinda+Town&media=http%3A%2F%2F0.tqn.com%2Fy%2Fdefault%2Ftravel%2FS%2F480298179.jpg" data-component="shareButtonsLimited" data-source="Social_ShareLimited" data-type="sharePinterest" data-ordinal="1" data-network="pinterest" title="Share on Pinterest" class="pinterest share-btn" data-pin-do="skipLink" target="_blank" ><span class="sprite pinterest"></span><span class="sprite pinterest-white"></span>
</a><a href="https://plus.google.com/share?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dgoogle%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons" data-component="shareButtonsLimited" data-source="Social_ShareLimited" data-type="shareGoogle" data-ordinal="1" data-network="google" title="Share on Google+" class="google share-btn" data-pin-do="skipLink" target="_blank" ><span class="sprite google"></span><span class="sprite google-white"></span>
</a></div>
</div> </div>
</div>
</div>
</div>
</header>
<div class="gpt leaderboard container">
<div id="leaderboard" class="wrapper"></div>
</div>
<main id="main" class="slab">
<div class="container">
<div class="row">
<div class="col col-15">
<div class="breadcrumbs trunc">
<ul>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.about.com" data-component="breadcrumbsTruncated" data-source="Breadcrumbs_Truncated" data-type="aboutCom" data-ordinal="1" itemprop="url" > <span itemprop="title">About.com</span>
</a> </li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<span class="separator sprite arrow-breadcrumb"></span>
<a href="http://www.about.com/travel" data-component="breadcrumbsTruncated" data-source="Breadcrumbs_Truncated" data-type="channel.displayName" data-ordinal="1" itemprop="url" > <span itemprop="title">About Travel</span>
</a> </li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<span class="separator sprite arrow-breadcrumb"></span>
<a href="http://bandb.about.com/" data-component="breadcrumbsTruncated" data-source="Breadcrumbs_Truncated" data-type="site.displayName" data-ordinal="1" itemprop="url" > <span itemprop="title">
Bed & Breakfasts
</span>
<div class="arrow arrow-up main"></div>
<div class="arrow arrow-up border"></div>
</a> </li>
<li><span class="separator sprite arrow-breadcrumb"></span></i><a href="#" data-component="breadcrumbsTruncated" data-source="Breadcrumbs_Truncated" data-type="ellipsis" data-ordinal="1" class="truncated" >. . .</a></li>
<li class="hide-breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<span class="separator sprite arrow-breadcrumb"></span>
<a href="http://bandb.about.com/od/bylocation/" data-component="breadcrumbsTruncated" data-source="Breadcrumbs_Truncated" data-type="category.heading" data-ordinal="1" itemprop="url" > <span itemprop="title">Bed and Breakfasts Around the World</span>
</a> </li>
<li class="hide-breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<span class="separator sprite arrow-breadcrumb"></span>
<a href="http://bandb.about.com/od/visitingmwus/" data-component="breadcrumbsTruncated" data-source="Breadcrumbs_Truncated" data-type="category.heading" data-ordinal="2" itemprop="url" > <span itemprop="title">Bed and Breakfasts in the Midwest United States</span>
</a> </li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<span class="separator sprite arrow-breadcrumb"></span>
<a href="http://bandb.about.com/od/illinois/" data-component="breadcrumbsTruncated" data-source="Breadcrumbs_Truncated" data-type="category.heading" data-ordinal="3" itemprop="url" > <span itemprop="title">Illinois Bed and Breakfasts</span>
</a> </li>
</ul>
</div><div class="document-title-extended">
<h1 itemprop="headline">Galena, IL: A B&B Kinda Town</h1>
</div><div class="row">
<div class="col col-10">
<div class="by-line by-line-inline">
<a href="http://bandb.about.com/bio/Michael-Franco-112305.htm" data-component="byLine" data-source="Bio" data-type="authorId" data-ordinal="1" class="by-line-author-img" ><img data-original="http://0.tqn.com/d/g/bw/112305.gif" width="50" height="50" data-load="lazy" /></a>
<div class="by-line-info" itemprop="author" itemscope itemtype="http://schema.org/Person">
<div class="muted inline-name">By
<a href="http://bandb.about.com/bio/Michael-Franco-112305.htm" data-component="byLine" data-source="Bio" data-type="authorName" data-ordinal="1" rel="author" class="muted" ><span class="heading" itemprop="name">Michael Franco</span></a>
</div>
<div class="site-expert">
<a href="http://bandb.about.com/" data-component="byLine" data-source="Bio" data-type="authorSite" data-ordinal="1" class="muted" ></a> </div>
</div>
</div>
</div>
<div class="col col-5">
<div class="pull-right document-share">
<div id="shareButtonsDocument" class="share-btns popout">
<div class="heading">Share this</div>
<div class="buttons"><a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dfacebook%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons" data-component="shareButtonsExtended" data-source="Social_ShareExtended" data-type="shareFacebook" data-ordinal="1" data-network="facebook" title="Share on Facebook" class="facebook share-btn first" data-pin-do="skipLink" target="_blank" ><span class="sprite facebook"></span><span class="sprite facebook-white"></span>
</a><a href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dtwitter%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons&via=aboutdotcom&text=Galena+IL+is+a+B%26amp%3BB+Kinda+Town" data-component="shareButtonsExtended" data-source="Social_ShareExtended" data-type="shareTwitter" data-ordinal="1" data-network="twitter" title="Share on Twitter" class="twitter share-btn" data-pin-do="skipLink" target="_blank" ><span class="sprite twitter"></span><span class="sprite twitter-white"></span>
</a><a href="http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dpinterest%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons&description=Galena+IL+is+a+B%26amp%3BB+Kinda+Town&media=http%3A%2F%2F0.tqn.com%2Fy%2Fdefault%2Ftravel%2FS%2F480298179.jpg" data-component="shareButtonsExtended" data-source="Social_ShareExtended" data-type="sharePinterest" data-ordinal="1" data-network="pinterest" title="Share on Pinterest" class="pinterest share-btn" data-pin-do="skipLink" target="_blank" ><span class="sprite pinterest"></span><span class="sprite pinterest-white"></span>
</a><a href="https://plus.google.com/share?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dgoogle%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons" data-component="shareButtonsExtended" data-source="Social_ShareExtended" data-type="shareGoogle" data-ordinal="1" data-network="google" title="Share on Google+" class="google share-btn" data-pin-do="skipLink" target="_blank" ><span class="sprite google"></span><span class="sprite google-white"></span>
</a>
<div class="more-share-wrapper">
<a href="#" data-component="shareButtonsExtended" data-source="Social_ShareExtended" data-type="sharePlus" data-ordinal="1" class="more share-btn" ><span class="sprite plus"></span><span class="sprite plus-white"></span></a>
<div class="more-share overlay">
<div class="arrow arrow-down"></div>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dstumbleupon%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons" data-component="shareButtonsExtended" data-source="Social_ShareExtended" data-type="shareStumbleupon" data-ordinal="1" data-network="stumbleupon" title="Share on StumbleUpon" class="stumbleupon share-btn first" data-pin-do="skipLink" target="_blank" ><span class="sprite stumbleupon"></span><span class="sprite stumbleupon-white"></span>
</a><a href="http://www.reddit.com/submit?url=http%3A%2F%2Fbandb.about.com%2Fod%2Fillinois%2Ffl%2FGalena-IL-A-BampB-Kinda-Town.htm%3Futm_source%3Dreddit%26utm_medium%3Dsocial%26utm_campaign%3Dshareurlbuttons&title=Galena+IL+is+a+B%26amp%3BB+Kinda+Town" data-component="shareButtonsExtended" data-source="Social_ShareExtended" data-type="shareReddit" data-ordinal="1" data-network="reddit" title="Share on Reddit" class="reddit share-btn" data-pin-do="skipLink" target="_blank" ><span class="sprite reddit"></span><span class="sprite reddit-white"></span>
</a> </div>
</div></div>
</div> </div>
</div>
</div>
<div id="radlinks1" data-num-links="10" data-character-limit="122" data-display-label="true" data-display-inline="false" class="radlinks widget"></div> </div>
</div>
<div class="row">
<div class="col col-11">
<div class="row">
<div class="col col-3">
<div class="category-list circ-list circ-list-more widget"
> <div class="widget-heading widget-heading-primary p-b-t-col">
<h5 class="heading p-col">Bed & Breakfasts Categories</h5>
</div>
<div class="see-more">
<div class="see-more-parent">
<div class="see-more-content">
<ul>
<li>
<a href="http://bandb.about.com/od/bylocation/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="1" > Bed and Breakfasts Around the World
</a> </li>
<li>
<a href="http://bandb.about.com/od/recommended/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="2" > Bed and Breakfasts Recommended by Guests
</a> </li>
<li>
<a href="http://bandb.about.com/od/murder/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="3" > Murder Mysteries at Bed and Breakfasts
</a> </li>
<li>
<a href="http://bandb.about.com/od/romanticescapes/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="4" > Romantic Escapes at Bed and Breakfasts
</a> </li>
<li>
<a href="http://bandb.about.com/od/uniquegetaways/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="5" > Unique Getaways at Bed and Breakfasts
</a> </li>
<li>
<a href="http://bandb.about.com/od/childfriendly/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="6" > Child-Friendly Bed and Breakfasts
</a> </li>
<li>
<a href="http://bandb.about.com/od/haunted/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="7" > Haunted Bed and Breakfasts
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/historic/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="8" > Historic Bed and Breakfasts
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/recreation/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="9" > Recreational Opportunities - Bed and Breakfasts Nearby
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/petfriendly/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="10" > Pet-Friendly Bed and Breakfasts
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/running/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="11" > How to Run a Bed and Breakfast
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/forsale/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="12" > Inns for Sale - Bed and Breakfasts for Sale
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/recipes/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="13" > Recipes from Innkeepers
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/interviews/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="14" > Innkeeper Interviews
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/tips/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="15" > Bed and Breakfast Tips
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/Blog/" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="16" > Blog
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/bylocation/u/find.htm" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="17" > Find a Bed and Breakfast
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/uniquegetaways/u/unique.htm" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="18" > Unique Bed and Breakfasts
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/od/running/u/be_an_innkeeper.htm" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="19" > Tips for Aspiring Bed and Breakfast Innkeepers
</a> </li>
<li class="hidden">
<a href="http://bandb.about.com/updated.htm" data-component="categoryList" data-source="CategorySite_All" data-type="item.heading" data-ordinal="20" > Updated Articles and Resources
</a> </li>
</ul>
</div>
</div>
<a href="#" data-component="categoryList" data-source="CategorySite_All" data-type="viewMore" data-ordinal="8-ViewMore" class="btn btn-light btn-wide all-caps see-more-btn" data-less="View Less" data-more="View More" > <div class="label">
<span class="text">View More</span>
<span class="arrow arrow-down"></span>
</div>
</a> </div>
</div>
<div id="newsletter" class="newsletter widget">
<div class="widget-heading widget-heading-primary p-b-t-col">
<h5 class="heading p-col">Free Email Newsletter</h5>
</div>
<form action="/newsletter/signup" method="get">
<div class="sub-heading">Let About.com send you<br/>the latest from our<br/>Bed & Breakfasts Expert.</div>
<div class="form-group">
<input class="email" type="email" name="email" placeholder="Your email address here">
</div>
<div class="success">Thanks for signing up!</div>
<div class="error"></div>
<div class="error ajax">There was a problem registering. <br>Try again later</div>
<div class="suggestion">Did you mean <a href="#" data-component="newsletter" data-source="newsletterTemplate" data-type="suggestedEmail" data-ordinal="1" source="NewsletterChannel_Error" class="suggested-email" ></a>?</div>
<button type="submit" class="btn btn-primary p-bg s-bg-hover s-b-col btn-wide all-caps">Sign up</button>
<div class="disclaimer">You can opt-out at any time.<br>Please refer to our <a href="http://www.about.com/gi/pages/mprivacy.htm" data-component="newsletter" data-source="newsletterTemplate" data-type="privacyPolicy" data-ordinal="1" >privacy policy</a> for contact information.</div>
</form>
</div>
</div>
<div class="col col-8">
<article class="content widget expert-content" itemprop="articleBody">
<div class="expert-content-text">
<div class="firstBlock"><p>Which US town is popular with generals? <a href="http://galena.org" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="1">Galena</a> in Jo Daviess County, Illinois, of course! Nine Civil War generals who settled in this town, including Galena’s favorite son - Ulysses S. Grant. After his victory in 1865, General Grant received a hero’s welcome from the town and was presented with a handsome Italianate-style red brick mansion. <a href="http://www.granthome.com" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="2">Grant’s Home</a> is now a National Historic Landmark and you can view its original furnishings including Grant’s favorite chair. To find out more about the 18th President of the United States, you can also the town's Grant’s Leather Store and the Galena & U.S. Grant Museum.</p></div>
<div id="adsense1" adsense-numlinks="3" adsense-displaylabel="true" class="adsense-slot adsense ads-half"></div>
<div id="radlinks3" data-num-links="5" data-character-limit="null" data-display-label="false" data-display-inline="true" class="radlinks ads-half"></div>
<p>But generals aren't the only ones who like this <a href="http://www.galenahistory.org" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="3">quinetessential small town</a>. "Conde Nast Taveler" rated it as the “Second Friendliest City in the US” and “14th Friendliest City in the World”, while "Forbes" Magazine listed it one of “America’s Prettiest Towns.”</p>
<p>Galena derived its name from the rich lead ore or galena (in Latin) deposits, which the original Native Americans used for their body paints. The town is rich in history with eighty-five percent of its buildings listed on the National Register of Historic Places. Step back in time to roam its streets where Abraham Lincoln and Ulysses S. Grant once walked. Admire its well-preserved unique period architecture heritage ranging from 19th-century commercial-style buildings lining Main Street to the grand residential mansions showcasing the Greek Revival and later Victorian styles. </p>
<p>One historic landmark not to be missed is the <a href="http://desotohouse.com/" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="4">DeSoto House Hotel</a> on Main Street, the oldest operating hotel in Illinois. Since its opening in 1850, the hotel has hosted many major historical events and famous guests such as Mark Twain, Theodore Roosevelt and Ralph Waldo Emerson. Take a free self-guided tour to visit the balcony decorated with red, white and blue bunting from where Abraham Lincoln once gave his speech; rooms 209 and 211 from which Ulysses S. Grant planned and conducted his presidential campaigns; and the Quiet Room where you watch videos about the rich history of Galena and the hotel.</p>
<div id="adsense2" adsense-numlinks="2" adsense-displaylabel="true" class="adsense-slot adsense ads-half"></div>
<p>When visiting Galena, don’t miss the opportunity to professionally decorate your own personal dining set and enjoy good food at the same time. Book at the <a href="http://www.stonehousepotterygalena.com" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="5">Stone House Pottery and Gallery</a>. Master potter Charles Fach and his wife Sandra will get you a three-piece dining set of dinner plate, salad/dessert plate and bowl. They then teach you how to decorate, glaze and fire your dinnerware. The next day, a Galena restaurant provides dinner consisting of an appetizer, salad, entrée and dessert that you will enjoy on your newly created plates and bowl.</p>
<p>Galena boasts many vineyards and wineries. Join the <a href="http://www.visitgalena.org/illinois-events?eventID=1677&mode=event" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="6">Blackhawk Wine Tour</a> to swirl, sniff and sip the best wines in Illinois at three different wineries and explore the scenic views of Jo Daviess County as well. The tour begins at Galena Cellars Vineyard & Winery, the next stop is Rocky Waters Winery and the final call is the Massbach Ridge Winery. Besides wine tasting, you'll also have the opportunity to buy limited-edition wines to take back home. Included in the tour is lunch at Procento’s Pizzeria, one of Galena’s best restaurants, along with complimentary water bottles, and pickup and drop-off at your B&B.</p>
<p>You don’t need to go on a tour to sample <a href="http://www.galenacellars.com" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="7">Galena Cellar’s</a> award-winning red, white and fruit wines. Just visit their tasting room and gift shop in a restored 1840’s grain building at downtown Galena. Alternatively, beer lovers can head to <a href="http://www.galenabrewery.com" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="8">Galena Brewery</a> on Main Street to taste their flagship and seasonal brews while enjoying tapas, soups, sandwiches and live entertainment.</p>
<p>Great wines should be paired with great food. Steak aficionados will love <a href="http://logcabingalena.com" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="9">Log Cabin Steakhouse</a> on Main Street, famous for its big and premium aged Angus beef, hand-cut daily. Sample their excellent 16-oz New York Cut or tender and delicious 24-ounce T-bone or the grand 32-ounce porterhouse steak and you won’t be disappointed.</p>
<p>Enjoy French and German cooking? Then head to <a href="http://www.fritzandfrites.com" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="10">Fritz and Frites</a> to try the French onion soup with baked Gruyere and Parmesan cheese crust; escargots de Bourgogne; the coq au-vin (braised chicken with red wine sauce); citron et bierre mussels (with white ale and lemon); steak frites (rib-eye steak with parsley butter and pommes frites). From the German side of the menu there's kassler rippchen (smoked pork chop with a cider glaze); Wiener schnitzels (breaded veal cutlets), and sauerbraten (beef marinated in a sweet and sour sauce) served with red cabbage or sauerkraut. The family-owned bistro serves European meals with imported wines and beers at affordable prices.</p>
<p>For your treats, walk into <a href="http://www.greatpopcorn.com" zt="-o1/XJ" target="_blank" data-component="link" data-source="inlineLink" data-type="externalLink" data-ordinal="11">The Great American Popcorn Company</a> on Main Street and you'll be welcomed with a friendly smile and a fresh, warm sample of their famous old-fashioned caramel corn. Choose from a daily selection of 50 delicious flavors of gourmet popcorn. In addition, the store offers handmade chocolates, candies, home-made fudge and ice cream. The store was featured on MSNBC’s Your Business and The Today Show.</p>
<p>Find out more reasons why Galena is a B&B Kinda Town <a href="/od/illinois/fl/Galena-IL-A-BampB-Kinda-Town-Part-II.htm" data-component="link" data-source="inlineLink" data-type="internalLink" data-ordinal="12">here</a>.</p>
</div>
</article>
<div class="append-content">
<div class="row">
<div class="col col-4">
<div class="linklist">
<h5 class="heading p-col">Related Articles</h5>
<ul>
<li><a href="http://gonewengland.about.com/cs/farmersmarkets/a/aawineriesguide.htm" data-component="linkList" data-source="ArticleChannel_RelatedClickability" data-type="item.bestTitle" data-ordinal="1" >New England Wineries Guide</a></li>
<li><a href="http://honeymoons.about.com/od/virginia/tp/virginia_wines.htm" data-component="linkList" data-source="ArticleChannel_RelatedClickability" data-type="item.bestTitle" data-ordinal="2" >Top 10 Places to Taste Virginia Wines</a></li>
<li><a href="http://bandb.about.com/od/romanticescapes/fl/Cape-May-A-BampB-Kinda-Town.htm" data-component="linkList" data-source="ArticleChannel_RelatedClickability" data-type="item.bestTitle" data-ordinal="3" >Cape May: A B&B Kinda Town</a></li>
<li><a href="http://bandb.about.com/od/visitingmwus/fl/St-Louis-A-BampB-Kinda-Town-Part-II.htm" data-component="linkList" data-source="ArticleChannel_RelatedClickability" data-type="item.bestTitle" data-ordinal="4" >St. Louis: A B&B Kinda Town (Part II)</a></li>
<li><a href="http://honeymoons.about.com/od/virginia/a/va_wine_country.htm" data-component="linkList" data-source="ArticleChannel_RelatedClickability" data-type="item.bestTitle" data-ordinal="5" >Virginia Wine Country</a></li>
<li><a href="http://honeymoons.about.com/od/longisland/fl/Hotel-Indigo-in-Riverhead-Long-Island-New-York.htm" data-component="linkList" data-source="ArticleChannel_RelatedClickability" data-type="item.bestTitle" data-ordinal="6" >Hotel Indigo is a Long Island boutique hotel that you may mistake for one in Tuscany.</a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col col-4">
<div class="circ-list
fixed
circ-list-large
circ-list-bordered
widget"> <div class="widget-heading widget-heading-primary p-b-t-col">
<h5 class="p-col">
Bed & Breakfasts Essentials
</h5>
</div>
<ul>
<li class="group" >
<div class="circ-list-img">
<a href="http://bandb.about.com/od/running/a/Smart-Fast-Ways-To-Use-Facebook-To-Increase-Occupancy-part-I.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.image" data-ordinal="1" ><img data-original="http://0.tqn.com/y/bandb/1/P/g/L/476850551.jpg" alt="Young woman working on laptop at home - Cultura/Twinpix/Riser/Getty Images" width="130" height="86" data-load="lazy" class="" >
</a> </div>
<div class="circ-list-content">
<div class="h5 headline">
<a href="http://bandb.about.com/od/running/a/Smart-Fast-Ways-To-Use-Facebook-To-Increase-Occupancy-part-I.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.bestTitle" data-ordinal="1" >Smart, Fast Ways to use Facebook to Increase Occupancy (Part I)</a>
</div>
<a href="http://bandb.about.com/od/running/" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.author.siteName" data-ordinal="1" class="site-name" > How to Run a Bed and Breakfast
</a>
</div>
</li>
<li class="group" >
<div class="circ-list-img">
<a href="http://bandb.about.com/od/tips/fl/Five-Things-Guests-Do-That-Drive-Innkeepers-Crazy-Part-I.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.image" data-ordinal="2" ><img data-original="http://0.tqn.com/y/bandb/1/P/y/L/89878405.jpg" alt="Woman wiping her face with towel in mirror. - AE Pictures Inc./Photodisc/Getty Images" width="130" height="86" data-load="lazy" class="" >
</a> </div>
<div class="circ-list-content">
<div class="h5 headline">
<a href="http://bandb.about.com/od/tips/fl/Five-Things-Guests-Do-That-Drive-Innkeepers-Crazy-Part-I.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.bestTitle" data-ordinal="2" >Five Things Guests Do That Drive Innkeepers Crazy (Part I)</a>
</div>
<a href="http://bandb.about.com/od/tips/" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.author.siteName" data-ordinal="2" class="site-name" > Bed and Breakfast Tips
</a>
</div>
</li>
<li class="group" >
<div class="circ-list-img">
<a href="http://bandb.about.com/od/breadrecipes/fl/Recipe-Strawberry-Bread-from-Big-Mill-BampB.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.image" data-ordinal="3" ><img data-original="http://0.tqn.com/y/bandb/1/P/N/M/Strawberrt-Bread-BigMillBB-Chloe.jpg" alt="Strawberrt-Bread-BigMillBB-Chloe.jpg - Chloe Tuttle, Big Mill Bed and Breakfast" width="130" height="86" data-load="lazy" class="" >
</a> </div>
<div class="circ-list-content">
<div class="h5 headline">
<a href="http://bandb.about.com/od/breadrecipes/fl/Recipe-Strawberry-Bread-from-Big-Mill-BampB.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.bestTitle" data-ordinal="3" >Strawberry Bread Recipe from Big Mill B&B</a>
</div>
<a href="http://bandb.about.com/od/breadrecipes/" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.author.siteName" data-ordinal="3" class="site-name" > Breakfast Recipes - Breads, Cakes and Muffins
</a>
</div>
</li>
<li class="group" >
<div class="circ-list-img">
<a href="http://bandb.about.com/cs/aspiring/a/decisions.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.image" data-ordinal="4" ><img data-original="http://0.tqn.com/y/bandb/1/P/I/M/182959263.jpg" alt="Young couple in kitchen - Stephen Zeigler/Taxi/Getty Images" width="130" height="86" data-load="lazy" class="" >
</a> </div>
<div class="circ-list-content">
<div class="h5 headline">
<a href="http://bandb.about.com/cs/aspiring/a/decisions.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.bestTitle" data-ordinal="4" >Want to Open a Bed and Breakfast? What to Think About First</a>
</div>
</div>
</li>
<li class="group" >
<div class="circ-list-img">
<a href="http://bandb.about.com/od/Bed-Breakfasts-In-The-South-Pacific/fl/Kauai-A-BampB-Kinda-Island.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.image" data-ordinal="5" ><img data-original="http://0.tqn.com/y/bandb/1/P/1/M/143415264.jpg" alt="View of sandy Beach - Allan Baxter/The Image Bank/Getty Images" width="130" height="86" data-load="lazy" class="" >
</a> </div>
<div class="circ-list-content">
<div class="h5 headline">
<a href="http://bandb.about.com/od/Bed-Breakfasts-In-The-South-Pacific/fl/Kauai-A-BampB-Kinda-Island.htm" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.bestTitle" data-ordinal="5" >Kauai: A B&B Kinda Island</a>
</div>
<a href="http://bandb.about.com/od/Bed-Breakfasts-In-The-South-Pacific/" data-component="circList" data-source="ArticleSite_MustReads" data-type="item.author.siteName" data-ordinal="4" class="site-name" > B&Bs In The South Pacific
</a>
</div>
</li>
</ul>
</div>
</div>
<div class="col col-4">
<div class="circ-list
fixed
circ-list-large
circ-list-bordered
widget"> <div class="widget-heading widget-heading-primary p-b-t-col">
<h5 class="p-col">
Travel Slideshows